473,651 Members | 2,580 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

global prefix and postfix ++ operator overloading

Is it possible to overload increment(++) and decrement(--) postfix and prefix
operators for primitive datatypes such as int, char, short, etc. in global scope
(vs as a class member function where this is possibe)?

If there is a site that lists all operators that can't be overloaded (such as
the member access dot operator), please post it.

thanks
Aug 20 '08 #1
3 3804
On Aug 20, 5:16*pm, "news.aioe. org" <bigmur...@yaho o.comwrote:
Is it possible to overload increment(++) and decrement(--) postfix and prefix
operators for primitive datatypes such as int, char, short, etc. in global scope
(vs as a class member function where this is possibe)?

If there is a site that lists all operators that can't be overloaded (such as
the member access dot operator), please post it.
The only operators that can be overloaded globally are new and delete
(in all their forms). All other operator overloads must involve a
class, and even new and delete can be overloaded on a class-by-class
basis.

Cheers! --M
Aug 20 '08 #2
mlimber wrote:
On Aug 20, 5:16 pm, "news.aioe. org" <bigmur...@yaho o.comwrote:
>Is it possible to overload increment(++) and decrement(--) postfix and prefix
operators for primitive datatypes such as int, char, short, etc. in global scope
(vs as a class member function where this is possibe)?

If there is a site that lists all operators that can't be overloaded (such as
the member access dot operator), please post it.

The only operators that can be overloaded globally are new and delete
(in all their forms). All other operator overloads must involve a
class, and even new and delete can be overloaded on a class-by-class
basis.

Cheers! --M
Agreed, "involving" a class doesn't necessarily mean the operator has to be a
member function.

struct C
{
int i;
int operator++() { return i += 2; }
};

int operator+=(C& c, int x) { return c.i += x; }
Aug 20 '08 #3
news.aioe.org wrote:
Is it possible to overload increment(++) and decrement(--) postfix
and prefix operators for primitive datatypes such as int, char,
short, etc. in global scope (vs as a class member function where
this is possibe)?
You can't write any operators for built-in types, because they are
already there. Predefined.
Bo Persson
Aug 21 '08 #4

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

Similar topics

6
2243
by: Sergey | last post by:
Hello! Could anybody be kind enough to explain this concept? Why C++ make two ops for prefix and postfix ++ operator? As I guess, it is possible to implement both cases via sole prefix increment operation. Correct me if I'm wrong, Let's see trival example:
8
6257
by: lovecreatesbeauty | last post by:
Hello experts, Why can this difference between prefix increment/decrement and postfix increment/decrement reside in built-in operators for built-in data types? Thanks. // test.cpp // // >g++ test.cpp // test.cpp: In function `int main()':
98
14399
by: jrefactors | last post by:
I heard people saying prefix increment is faster than postfix incerement, but I don't know what's the difference. They both are i = i+1. i++ ++i Please advise. thanks!!
2
2257
by: shan | last post by:
Hi to everybody, I am begginer in C programming language. My simple doubt is the difference between postfix & prefix unary operator plus. (i.e) i++ and ++i . plz give me an example program with output.
30
5459
by: Xah Lee | last post by:
The Concepts and Confusions of Prefix, Infix, Postfix and Fully Functional Notations Xah Lee, 2006-03-15 In LISP languages, they use a notation like “(+ 1 2)” to mean “1+2”. Likewise, they write “(if test this that)” to mean “if (test) {this} else {that}”. LISP codes are all of the form “(a b c ...)”, where the
8
7829
by: subramanian100in | last post by:
Consider int i = 10; Why do we say that ++i yields an Lvalue and i++ yields an Rvalue ? I thought both these expressions yield only values. I am unable to understand the difference
2
2501
by: swapnaoe | last post by:
Hi, In http://elearning.embnet.org/file.php/43/ctutorial/Postfix-and-prefix----and---.html I read about postfix and prefix unary operators. It said " If the increment or decrement operator is used as a prefix, the operation is performed before the function call. If the operator is used as a postfix, the operation is performed after the function call. " So accordingly int x=4; printf("%d%d", x++,x++); the output should be 4 4
3
2033
by: subramanian100in | last post by:
Consider the code fragment: vector<intcontainer; container.insert(container.begin(), 10); int& ref = *--container.end(); From this, it looks like we can apply prefix decrement operator to container.end() - ie 'prefix --' can be applied to the iterator type
2
2444
by: puzzlecracker | last post by:
How can we implement operator ++ as postfix in prefix? thanks
0
8349
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
0
8275
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8695
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8576
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7296
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 projectplanning, coding, testing, and deploymentwithout human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6157
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4281
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2696
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1906
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.