When implementing operator[] how should I include bounds checking?

前端 未结 13 1947
清酒与你
清酒与你 2021-01-19 06:12

First of all I apologize for the long lead up to such a simplistic question.

I am implementing a class which serves as a very long 1 dimensional index on a space fil

13条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-19 07:07

    You could perhaps add an "out of bounds" exception to the [] operator (or at least an assert).

    This should catch any problems, especially when debugging.

提交回复
热议问题