作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
代码工作正常,但是当我在 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/
代码工作正常,但是当我在 cppcheck 上检查它时,我发现了空指针取消引用错误,我无法理解如何解决它。任何想法将不胜感激 这是我得到错误的代码部分 #ifdef DEBUG_LEVEL_MID
我是一名优秀的程序员,十分优秀!