Difference between new operator and operator new

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?

4455


Why oops is important?

770


What is byval and byref? What are differences between them?

1920


is there any choice in opting subjects like 4 out of 7

1909


Why do pointers exist?

854


What is an advantage of polymorphism?

793


i am getting an of the type can not convert int to int *. to overcome this problem what we should do?

2041


What is the purpose of polymorphism?

845


What is multilevel inheritance?

918


hi all..i want to know oops concepts clearly can any1 explain??

1869


c++ program to swap the objects of two different classes

2099


What is a class oop?

744


This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.

1838


What is the benefit of oop?

735


What is property in oops?

767