标签: c++11 const
如果我想为迭代器类(非常量)实现operator->(),返回值的正确方法是什么? const T*或T*? (而T是我的数组中任何元素的类型..)
operator->()
const T*
T*
T