只有一个类成员的时候,可以
#include<iostream>
using namespace std;
using std::endl;
class Test{
public:
Test(int x){
_x=x;
}
void show(){
std::cout << "x:"<<_x << std::endl;
}
private:
int _x;
};
int main(){
Test t(20);
t.show();
t=30;
t.show();
return 0;
}
Output: Copy
x:20
x:30