2

为什么我无法编译以下代码(使用 g++ 4.7.1)?

#include <set>

template<typename T>
class Problem
{
    public:
        void f();

        std::set<int> dummyvalue;
};

template<typename T>
void Problem<T>::f()
{
    auto mytestlambda = [this](){
        dummyvalue.clear();
    };
}

int main()
{
    return 0;
}

我收到以下错误:

main.cpp: In member function 'void Problem<T>::f()':
main.cpp:17:10: error: 'mytestlambda' does not name a type

我在检查无法调用“clear()”方法的问题时遇到了这个问题。

添加 '-std=c++11' 真的让我遇到了真正的问题:

main.cpp: In lambda function:
main.cpp:18:26: error: no matching function for call to 'std::set<int>::clear() const'
main.cpp:18:26: note: candidate is:
In file included from /usr/include/c++/4.7/set:61:0,
                 from main.cpp:1:
/usr/include/c++/4.7/bits/stl_set.h:580:7: note: void std::set<_Key, _Compare, _Alloc>::clear() [with _Key = int; _Compare = std::less<int>; _Alloc = std::allocator<int>] <near match>
/usr/include/c++/4.7/bits/stl_set.h:580:7: note:   no known conversion for implicit 'this' parameter from 'const std::set<int>*' to 'std::set<int>*'

为什么这里涉及“const”?

4

3 回答 3

3

这是 GCC 4.7 中的一个错误。升级到 4.8 可以解决这个问题。

显然 GCC 4.7 被错误地捕获thisconst.

于 2013-10-15T22:11:11.473 回答
2

这是因为您没有在编译器中启用 C++11。尝试--std=c++11为 GCC 使用标志。然后它应该正确编译。

于 2013-10-15T21:38:11.563 回答
0

try compiling with -std=c++11. Sadly, current compilers still default to a >10 year old standard.

于 2013-10-15T21:40:28.730 回答