class intHolder{private: int i;public: intHolder(int myInt){i = myInt;} voID addToInt(int inc){ i = i + inc;} voID printInt(){cout << i << endl;} voID addToOtherInt(intHolder other){other.addToInt(i);}};
主要方法
int main () { intHolder ih1(1); ih1.printInt();//Should be 1,is 1 ih1.addToInt(3); ih1.printInt();//Should be 4,is 4 intHolder ih2(2); ih2.printInt();//Should be 2,is 2 ih1.addToOtherInt(ih2); ih1.printInt();//Should be 4,is 4 ih2.printInt();//Should be 6,is 2};解决方法 您是按值传递intHolder.这意味着该函数作用于本地副本,因此对调用方没有影响.你需要传递一个参考:
voID addToOtherInt(intHolder& other) { other.addToInt(i); } ^
请注意,通常当您拥有包含支持算术运算的其他类型的类型时,您可以提供重载运算符,以便您可以执行以下 *** 作
intHolder a = 5;intHolder b = 10;intHolder c = a + b;c += 42;a = 42 - b;
等等.有关更多信息,请参见this extensive discussion on operator overloading.
而且,对于“印刷”,习惯上过载ostream& amp;运算符<< ;,然后允许您流式传输到各种流,包括但不限于std :: cout.例如:
struct Foo{ int i;};std::ostream& operator<<(std::ostream& o,const Foo& f){ return o << f.i;}
可以让你说
Foo f;std::cout << f;std::cerr << f;std::ofstream tmp("foo.txt");tmp << f;总结
以上是内存溢出为你收集整理的为什么我的c对象不会影响另一个c对象?全部内容,希望文章能够帮你解决为什么我的c对象不会影响另一个c对象?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)