示例#1
0
 x& operator=(x const& rhs)
 {
     incr_copy();
     return *this;
 }
示例#2
0
 x& operator=(x const& /*rhs*/)
 {
     incr_copy();
     return *this;
 }
示例#3
0
 x(x const& rhs)
 {
     incr_copy();
 }
示例#4
0
 x(x const& /*rhs*/)
 {
     incr_copy();
 }