我正在尝试c ++ 11的新功能,我发现了一个问题。这是我的代码:
#include <iostream>
#include <list>
#include <string>
using namespace std;
class A {
public:
int f (list<string> a, list<string> b={})
{
cout << a.size() << endl;
cout << b.size() << endl; // This line!!!
return 0;
}
};
int main ()
{
A a;
list<string> l{"hello","world"};
a.f(l);
return 0;
}
执行停留在&#34;这条线!!!&#34;线。我继续调试,看起来问题就在这里。
/** Returns the number of elements in the %list. */
size_type
size() const _GLIBCXX_NOEXCEPT
{ return std::distance(begin(), end()); }
我以这种方式编译我的程序:
g++ -std=c++11 -ggdb3 -fPIC -o test TestlistInit.cpp
我正在使用这个版本的g ++:
g++ (Ubuntu 4.8.2-19ubuntu1) 4.8.2
提前致谢!!!
答案 0 :(得分:2)
要找到原因,启用调试符号,当你到达第一行时,我们首先检查b的内容,看起来像这样(值会有所不同)在这种情况下我使用了Code :: Blocks&#34 ;观看&#34;选项。
b.M_Impl._M_node._M_next = 0x7fffffffe370
b.M_Impl._M_node._M_prev = 0x7fffffffe370
然后使用调试器选项&#34;进入&#34;一旦我们点击了我们的b.size线。
最终这将把我们带到stl_iterator_base_funcs.h
一开始我们可以看到第一个&amp;最后是相同的:
__first._M_node = 0x7fffffffe370
__last._M_node = 0x7fffffffe370
while (__first != __last)
{
++__first;
++__n;
}
进入++__first
我们可以看到它在stl_list.h中执行此操作:
_Self&
operator++()
{
_M_node = _M_node->_M_next;
return *this;
}
_M_node
和_M_node->_M_next
相同,因此__first
永不递增,.size()
陷入无限循环。