有个类比如class A怎么在里面重载中括号,达到下面三种效果:
A a;
int v=a[0];
a[0]=5;
a[0]++;其中中括号返回int和int的引用,并且可以用中括号设置值设置。
其实就是达到数组的效果。