为什么我不能让 operator++() 不抛出?
这可能是使用后缀 ++ 运算符(优于前缀 ++ 运算符)的少数优势之一。
例如,此代码无法编译
class Number
{
public:
Number& operator++ () // ++ prefix
{
++m_c;
return *this;
}
Number operator++ (int) nothrow // postfix ++
{
Number result(*this); // make a copy for result
++(*this); // Now use the prefix version to do the work
return result; // return the copy (the old) value.
}
int m_c;
};
附带说明一下,后缀运算符也可以是线程安全的。