我们可以为预增量和后增量重载operator++
吗?即正确调用SampleObject++
和++SampleObject
结果。
class CSample {
public:
int m_iValue; // just to directly fetch inside main()
CSample() : m_iValue(0) {}
CSample(int val) : m_iValue(val) {}
// Overloading ++ for Pre-Increment
int /*CSample& */ operator++() { // can also adopt to return CSample&
++(*this).m_iValue;
return m_iValue; /*(*this); */
}
// Overloading ++ for Post-Increment
/* int operator++() {
CSample temp = *this;
++(*this).m_iValue;
return temp.m_iValue; /* temp; */
} */
};
我们不能仅基于返回类型重载函数,即使我们将其视为允许,也不会因为调用解析的模糊性而解决问题。
由于提供了运算符重载以使内置类型的行为类似于用户定义的类型,为什么我们不能同时为我们自己的类型提供前后增量。
答案 0 :(得分:70)
增量运算符的后缀版本采用虚拟int
参数来消除歧义:
// prefix
CSample& operator++()
{
// implement increment logic on this instance, return reference to it.
return *this;
}
// postfix
CSample operator++(int)
{
CSample tmp(*this);
operator++(); // prefix-increment this instance
return tmp; // return value before increment
}
答案 1 :(得分:19)
T型的预增量和后增量的标准模式
T& T::operator++() // pre-increment, return *this by reference
{
// perform operation
return *this;
}
T T::operator++(int) // post-increment, return unmodified copy by value
{
T copy(*this);
++(*this); // or operator++();
return copy;
}
(你也可以调用一个常用函数来执行增量,或者如果它是一个简单的单行代码,就像成员上的++一样,只需在两者中执行)
答案 2 :(得分:12)
为什么我们不能同时为我们自己的类型提供前后增量。
你可以:
class CSample {
public:
int m_iValue;
CSample() : m_iValue(0) {}
CSample(int val) : m_iValue(val) {}
// Overloading ++ for Pre-Increment
int /*CSample& */ operator++() {
++m_iValue;
return m_iValue;
}
// Overloading ++ for Post-Increment
int operator++(int) {
int value = m_iValue;
++m_iValue;
return value;
}
};
#include <iostream>
int main()
{
CSample s;
int i = ++s;
std::cout << i << std::endl; // Prints 1
int j = s++;
std::cout << j << std::endl; // Prints 1
}
答案 3 :(得分:6)
<强> [N4687] 强>
名为operator ++的用户定义函数实现前缀和后缀++运算符。如果此函数是不带参数的非静态成员函数,或带有一个参数的非成员函数,则它为该类型的对象定义前缀增量运算符++。如果函数是具有一个参数的非静态成员函数(其类型为int)或具有两个参数的非成员函数(其中第二个应为int类型),则它定义后缀增量运算符++对于那种类型的对象。当使用++运算符调用后缀增量时,int参数的值为零 [实施例:
struct X {
X& operator++(); // prefix ++a
X operator++(int); // postfix a++
};
struct Y { };
Y& operator++(Y&); // prefix ++b
Y operator++(Y&, int); // postfix b++
void f(X a, Y b) {
++a; // a.operator++();
a++; // a.operator++(0);
++b; // operator++(b);
b++; // operator++(b, 0);
a.operator++(); // explicit call: like ++a;
a.operator++(0); // explicit call: like a++;
operator++(b); // explicit call: like ++b;
operator++(b, 0); // explicit call: like b++;
}
答案 4 :(得分:0)
#include<iostream>
using namespace std;
class increment{
int a;
public:
increment(int x)
{ a=x; }
void operator ++(){
cout<<"pre-increment:";
cout<<++a;}
void operator ++(int){ /*post version of increment operator takes int as a dummy parameter*/
cout<<endl<<"post-increment:";
cout<<a++;}
};
int main(){
increment o1(4);
increment o2(4);
++o1; //pre-increment
o2++; //post-increment
}
输出:
预增:5
后递增:4