0
What is doing the New? Please give me answer.
3 Antworten
+ 2
Could you be more specific with your answer ?
+ 1
I would like to know what exactly is the name NEW used in objects for? Does it create a link? I heard about some kind of constructor, but there is not much written about it here. Please give a detailed answer.
0
In most of object-oriented langages, like c++ and Java, the new keyword is used to create a new instance of an object an call the constructor of the base class.
It usually create the object on the heap.