我似乎无法让 g++ 编译使用移动构造函数的 c++11 代码。我不断收到此错误:
collin@Serenity:~/Projects/arraylib$ g++ ./t2.cpp
./t2.cpp:10:27: error: expected ‘,’ or ‘...’ before ‘&&’ token
./t2.cpp:10:38: error: invalid constructor; you probably meant ‘Blarg (const Blarg&)’
我正在编写的程序与此完全不同,但我将其修剪到看起来应该可以正常工作的部分,但仍然会触发错误:
#include <iostream>
using namespace std;
class Blarg {
public:
Blarg () {};
Blarg (const Blarg& original) {}; /* Copy constructor */
Blarg (Blarg&& original) {}; /* Move constructor */
};
int main(int argc, char *argv[])
{
Blarg b;
return 0;
}
谁能告诉我我做错了什么?而是如何解决?
这是我的 gcc 版本:
gcc (Ubuntu/Linaro 4.6.2-14ubuntu2) 4.6.2