Accessing the [] operator from a pointer

前端 未结 7 726
北海茫月
北海茫月 2020-11-30 02:52

If I define a pointer to an object that defines the [] operator, is there a direct way to access this operator from a pointer?

For example, in the follo

7条回答
  •  误落风尘
    2020-11-30 03:30

    You can use it as VecPrt->operator [] ( 0 ), but I'm not sure you'll find it less obscure.

提交回复
热议问题