473,396 Members | 1,886 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

operator new override/overload?

Hi, if we need to change the behavior of operator new, it is called
overriding or overloading? My other question is, if we change the
behavior of operator new, do we use malloc to do that or we use
operator new?

Jan 13 '06 #1
2 11499
* Shark:
Hi, if we need to change the behavior of operator new, it is called
overriding or overloading?
operator new is a static function, and on that account it would be
'overload'.

However, operator delete is also a static function, but behaves much like a
virtual function with dynamic (run-time) dispatch:
#include <iostream>
#include <ostream>
#include <memory>

struct Base { virtual ~Base() {} };

struct DerivedA: Base
{
static void operator delete( void* p )
{
std::cout << "Deallocating A." << std::endl;
::operator delete( p );
}
};

struct DerivedB: Base
{
static void operator delete( void* p )
{
std::cout << "Deallocating B." << std::endl;
::operator delete( p );
}
};

int main()
{
std::auto_ptr<Base> pA( new DerivedA );
std::auto_ptr<Base> pB( new DerivedB );
}

which yields the output

Deallocating B.
Deallocating A.

as if operator delete were a virtual function.

So in the case of operator delete it's not entirely inappropriate to talk
about 'override'.

What about operator new then, viewed as a kind of same sort of function as
operator delete?

Well, it isn't. Operator new is more like a constructor (you don't override
constructors, and you don't override operator new), and operator delete is
more like a virtual destrutor (you do override virtual destructors).

My other question is, if we change the
behavior of operator new, do we use malloc to do that or we use
operator new?


You can use anything you want, it depends on what you want. But given that
you ask, i.e. not sure, my advice would be to _not_ overload operator new.
Except as a learning experiment -- don't use features you don't understand
in production code, especially not dangerous, low-level features.
--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jan 13 '06 #2
"Shark" <cp*******@yahoo.com> wrote in message news:11**********************@g44g2000cwa.googlegr oups.com...
Hi, if we need to change the behavior of operator new, it is called
overriding or overloading? My other question is, if we change the
behavior of operator new, do we use malloc to do that or we use
operator new?


It is not clear what you want. C++ has several operators new. Which one do you need to change?
C++ has the possibility to define a new operator for a class. This is the safest way to go.
It is also possible to override the global new operators, but this needs a lot of care,
since these global new operators are also used in the C++ library functions.
(This means that on many platforms the standard operator new sits already in the shareable libraries,
so you should use a static link to get a consistent use of the changed new operators.)
In addition you should change the delete operators as well to match your new operators.
You could use malloc and free.

F.Z.
Jan 13 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: Edward Diener | last post by:
Is there a way to override the default processing of the assignment operator for one's own __value types ? I realize I can program my own Assign method, and provide that for end-users of my class,...
2
by: emma middlebrook | last post by:
Hi Having difficulty getting myself clear on how a type's operator== fits in with Object.Equals. Let's just consider reference types. The default operator== tests for object identity...
11
by: apex | last post by:
Hi All : How to override the class operator = like C++ ? Best regards !
17
by: Chris | last post by:
To me, this seems rather redundant. The compiler requires that if you overload the == operator, you must also overload the != operator. All I do for the != operator is something like this: ...
8
by: Pesso | last post by:
I'm having a difficulty compairing null to a class object whose "equal" operator is overridden.. Consider the following: class Foo { // ... public static bool operator==(Foo f1, Foo f2) {...
6
by: apm | last post by:
Recently I have had to use a value type for a complex structure because I don't know how to override the = operator. Can the operator ever be overloaded? Or can inheritance be used with value types?
6
by: TuxC0d3 | last post by:
Hi! I'm diving into the some more ++ specific aspects of c++ (and finally accepting that c++ is more than "a plus added to c" :), so that means using namespaces, templates, std::strings, lists,...
9
by: Tony | last post by:
I have an operator== overload that compares two items and returns a new class as the result of the comparison (instead of the normal bool) I then get an ambiguous operater compile error when I...
19
by: C++Liliput | last post by:
I have a custom String class that contains an embedded char* member. The copy constructor, assignment operator etc. are all correctly defined. I need to create a map of my string (say a class...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.