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

后端 未结 20 2243
有刺的猬
有刺的猬 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:31

    Yes, you should check for null pointers. You don't want to crash an application because the developer messed something up.

提交回复
热议问题