In either C or C++, should I check pointer parameters against NULL/nullptr?

后端 未结 20 2255
有刺的猬
有刺的猬 2020-11-27 03:54

This question was inspired by this answer.

I\'ve always been of the philosophy that the callee is never responsible when the caller does something stupid, like passi

20条回答
  •  迷失自我
    2020-11-27 04:36

    In C++, if you don't want to accept NULL pointers, then don't take the chance: accept a reference instead.

提交回复
热议问题