[]运算符具体怎么实现的呀,有点困难
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>')|
但是我感觉这样可以重载呀