set? 函數(shù)沒有返回this指針,為什么也對?
1 回答

asd8532
TA貢獻143條經(jīng)驗 獲得超187個贊
還是有問題的
#include?<iostream> using?namespace?std; class?ARR{ public: ????????int?len; ARR(int?l){ len?=?l; } ARR&?setlen1(int?len){ this->len?=?len; cout<<len<<endl; return?*this; } ARR&?setlen2(int?len){ this->len?=?len; cout<<len<<endl; } }; int?main(){ ?ARR?a(10); ?????????a.setlen1(7).setlen1(8);//這個可以 ??????????a.setlen2(7).setlen2(8);//不行 ??????????//顯示.沒有.顯示.沒有???顯示接沒有ok,沒有接沒有err ?return?0; }
- 1 回答
- 0 關(guān)注
- 1133 瀏覽
添加回答
舉報
0/150
提交
取消