rt,高精度想实现重载:
struct big { int a[114514]; //重载中括号使得满足下面cout的形式 }; big t; //cout << t.a[0]; 改成下面的形式 cout << t[0];
大概知道什么意思吧。