what is the entity does an expression “E1.E2” denote when E2 is of reference type

后端 未结 0 444
醉梦人生
醉梦人生 2021-02-19 06:45
struct Test{
  Test(int& v):rf(v){}
  int& rf;
  int obj;
};
int main(){
  int i = 0;
  Test t{i};
  t.rf = 1;
  t.obj =          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题