Difference between new operator and operator new
Answers were Sorted based on User's Feedback
Answer / skybeaver
The "new" operator allocates a new instance of an object
from the heap, utilising the most appropriate constructor
for the arguments passed.
Like many operators in C++, the "new" operator for a
particular class can be overriden, although there is rarely
a need to do so. "operator new" is the mechanism for
overriding the default heap allocation logic. Ask your
interviewer to provide you with a concrete example of when
he or she has been required to do this.
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / nutan
pls refer
http://objectmix.com/c/34028-difference-between-new-operator-new.html
| Is This Answer Correct ? | 3 Yes | 4 No |
what is runtime polymorphism? For the 5 marks.
What is the difference between pass by reference and pass by value?
What is function overloading and operator overloading?
What is polymorphism and types?
diff between Abstract class Interfaces?
What is a friend function & its advantage?
What is overriding in oops?
why freind function takes more parameter than normal member function in c++?
Can you explain polymorphism?
What are classes oop?
Can we have inheritance without polymorphism?
What is destructor in oop?