gpt4 book ai didi

C++ Visual Studio 2010 C4717 编译器警告在代码的一部分中,但在另一部分中没有

转载 作者:太空狗 更新时间:2023-10-29 23:08:19 24 4
gpt4 key购买 nike

这六种方法(实际上是三种,实际抛出警告的是非 const 版本)导致 C4717(函数在所有路径上递归)警告,但后面的方法却没有(与我能做的完全一样)告诉...)。 我错过了什么导致对这些而不是另一个发出警告?

产生警告的方法:

template<class T>
const QuadTreeNode<T>* QuadTree<T>::GetRoot() const {
return _root;
}


template<class T>
QuadTreeNode<T>* QuadTree<T>::GetRoot() {
return static_cast<const QuadTree<T> >(*this).GetRoot();
}

template<class T>
const int QuadTree<T>::GetNumLevels() const {
return _levels;
}

template<class T>
int QuadTree<T>::GetNumLevels() {
return static_cast<const QuadTree<T> >(*this).GetNumLevels();
}

template<class T>
const bool QuadTree<T>::IsEmpty() const {
return _root == NULL;
}


template<class T>
bool QuadTree<T>::IsEmpty() {
return static_cast<const QuadTree<T> >(*this).IsEmpty();
}

非警告生成方法:

template<class T>
const Rectangle QuadTreeNode<T>::GetNodeDimensions() const {
return _node_bounds;
}

template<class T>
Rectangle QuadTreeNode<T>::GetNodeDimensions() {
return static_cast<const QuadTreeNode<T> >(*this).GetNodeDimensions();
}

最佳答案

ildjarn 所述, 是一个 acknowledged带有警告的错误。如果您查看与您的代码类似的最基本用法的代码,则没有以下警告(并且不是递归的)。

class A
{
public:
bool IsEmpty()
{
return static_cast<const A>(*this).IsEmpty();
}

bool IsEmpty() const
{
return true;
}
};

int main()
{
A whatever;
whatever.IsEmpty();

return 0;
}

关于C++ Visual Studio 2010 C4717 编译器警告在代码的一部分中,但在另一部分中没有,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10097510/

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