Section 11.15 Word Matching Exercise
The -> Operator
Copy Constructor
Destructor
delete p
delete [] list
this pointer
new int[3]
new *int
| destroys an array list. | |
| is for accessing the member of an object from the pointer of the object. | |
| is invoked to copy the contents of an object to another object. | |
| destroys the memory pointed by p. | |
| is a keyword that refers to the calling object itself. | |
| is invoked when an object is destroyed. | |
| creates a memory for allocating an int. | |
| creates an array of 3 elements. |