我在使用 STL 函数时发现了一个奇怪的现象。我写了一个 test() 函数。
bool test()
{
list<int> t;
for( int i = 0; i < t.size()-1; i ++ )
{
return false;
}
return true;
}
当我运行 test() 函数时,返回 false;为什么?
我在使用 STL 函数时发现了一个奇怪的现象。我写了一个 test() 函数。
bool test()
{
list<int> t;
for( int i = 0; i < t.size()-1; i ++ )
{
return false;
}
return true;
}
当我运行 test() 函数时,返回 false;为什么?