D Programming/Expressions
new
editThe keyword new allocates the memory for an object and calls one of the constructors.
class C{ } C c = new C();
This allocates as many bytes, the class C needs for one instance. Then the standard constructor without arguments is called.
If the memory allocation fails, an OutofMemory Exception is thrown. The memory is allocated on the garbage collector heap.
A class can have multiple constructors with different argument lists. The matching constructor is chosen.
A class can have an own allocator and deallocator. If they exist, they are called instead of the gc allocator.
in
editTo do:
cast
editTo do:
assert
editTo do:
typeid
editTo do:
is
editTo do:
delete
editTo do:
This page or section is an undeveloped draft or outline. You can help to develop the work, or you can ask for assistance in the project room. |