Prefix increment prototype syntax:
void operator ++();
Postfix increment prototype increment:
void operator ++(int);
Example:
class pre_post
{
public:
void operator ++(void)
{
cout << "Prefix ++ called";
}
void operator ++(int)
{
cout << "Postfix ++ called";
}
};
void main(int argc, char *argv[])
{
pre_post b;
b++;
++b;
}
About our authors: Team EQA
You have viewed 1 page out of 62. Your C++ learning is 0.00% complete. Login to check your learning progress.