Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个非常基本的问题,但我不知道如何用谷歌搜索它。
我有一个指向向量(或指针数组)的指针,比如说
vector<int *> *p;
除了索引这个数组还有其他语法吗
(*p)[i];
类似于 -> 运算符?
是的 -
p->operator[](i);
但如果你问我,这并不是更好。
p->at(i)类似,但会进行边界检查并在超出范围时抛出异常i。看起来比您和 Luchian 的解决方案 (IMO) 都好,而且更安全一些。
p->at(i)
i