What would be a proper invalid value for a pointer?

前端 未结 7 585
抹茶落季
抹茶落季 2021-01-25 03:16

Suppose I have this code. Your basic \"if the caller doesn\'t provide a value, calculate value\" scenario.

void fun(const char* ptr = NULL)
{
   if (ptr==NULL) {         


        
7条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-25 03:50

    I agree with all the other answers provided, but here's one more way of handling that, which to me personally looks more explicit, if more verbose:

    void fun()
    {
      // Handle no pointer passed
    }
    
    void fun(const char* ptr)
    {
      // Handle non-nullptr and nullptr separately
    }
    

提交回复
热议问题