慕田峪2224101
2018-03-01 22:19
[]运算符具体怎么实现的呀,有点困难
template<typename T>
int& MyStack<T>::operator[](int i) {
return m_pBuffer[i];
}
我是这么实现的,但是好像行不通
报错: no match for 'operator[]' (operand types are 'char [17]' and 'MyStack<int>')|
但是我感觉这样可以重载呀
数据结构探险—栈篇
62724 学习 · 102 问题
相似问题