Comparison of programming languages (object-oriented programming)
Appearance
_TOC_
Object creation and destruction
| creation | destruction | |
|---|---|---|
| C++ (STL) | class variable =[ new] class(parameters); | delete variable; |
| C# | class variable = new class(parameters); | variable.Dispose(); |
| Java | variable.dispose(); | |
| Visual Basic .NET | Dim variable As New class(parameters) | variable.Dispose() |