1
dajj 2019-09-26 21:43:13 +08:00
show your example code to explain
|
3
evianby40 OP @dajj
double& Array::operator[](int a) { if (a<low || a>up) { cout << "数据越界" << endl; exit(0); } return arr[a - low]; } |
4
dajj 2019-09-26 22:09:23 +08:00
你这个是运算符重载, 是语言本身的要求。 参考以下两个链接
http://c.biancheng.net/view/2312.html http://c.biancheng.net/cplus/operator/ |
6
wnpllrzodiac 2019-09-27 12:50:41 +08:00 via Android
支持级联操作?
|