gpt4 book ai didi

c++ - cppcheck 空指针取消引用 : m_buffer - otherwise it is redundant to check it against null

转载 作者:搜寻专家 更新时间:2023-10-31 00:33:04 25 4
gpt4 key购买 nike

代码工作正常,但是当我在 cppcheck 上检查它时,我发现了空指针取消引用错误,我无法理解如何解决它。任何想法将不胜感激

这是我得到错误的代码部分

#ifdef DEBUG_LEVEL_MID
std::clog << "STARTING FUNCTION int ConfigurationType::ExecuteMessageType()" << std::endl;
std::clog << "message with code : " << message_to_execute->code << "will be tried o executed" << std::endl;
#endif

if(!message_to_execute)
{
#ifdef DEBUG_LEVEL_ERROR
std::cerr << "message_to_execute is null at: int ConfigurationType::ExecuteMessageType()" << std::endl;
#endif
#ifdef DEBUG_LEVEL_MID
std::clog << "message_to_execute is NULL at int ConfigurationType::ExecuteMessageType()" << std::endl;
std::clog << "ENDING FUNCTION (0): int ConfigurationType::ExecuteMessageType()" << std::endl;
#endif
return 0;
}

错误是:可能的空指针取消引用:message_to_execute - 否则检查它是否为空是多余的。

最佳答案

您取消引用 message_to_execute这里:std::clog << "message with code : " << message_to_execute->code .

这意味着 if (!message_to_execute) later 是多余的,因为不允许取消引用空指针,因此允许编译器假定 message_to_execute不为空,去掉测试。

关于c++ - cppcheck 空指针取消引用 : m_buffer - otherwise it is redundant to check it against null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29748171/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com