찾다

 >  Q&A  >  본문

关于c++中if(变量)的问题

template <class T>
Node<T>* BinaryTree<T>::getFather(Node<T>* current)
{
    Node<T>* temp = root;
    while(temp != NULL || !traverseStack.isEmpty())
    {
        if(temp)
        {
            if(temp->leftChild == current || temp->rightChild == current)
            {
                return temp;
            }
            if(temp->rightChild)
            {
                traverseStack.pushStack(temp->rightChild);
            }
            temp = temp->leftChild;
        }
        else
        {
            traverseStack.popStack(temp);
        }
    }
    return NULL;
}

而我已经用 if(temp),程序中temp为无法读取,那就不应该进入if语句,为什么程序还是执行if后面的语句了?

ringa_leeringa_lee2767일 전540

모든 응답(3)나는 대답할 것이다

  • 巴扎黑

    巴扎黑2017-04-17 13:12:46

    无法读取是指针异常,不代表指针为0

    회신하다
    0
  • 大家讲道理

    大家讲道理2017-04-17 13:12:46

    你的root没有初始化吧。
    temp的值是一个地址值,只要地址值不为0,if都会通过。

    회신하다
    0
  • 天蓬老师

    天蓬老师2017-04-17 13:12:46

    信息量太少了 不好判断
    邓俊辉的数据结构? 这种书都有源代码的 去官网上下
    NULL现在推荐使用nullptr

    회신하다
    0
  • 취소회신하다