2

我正在尝试使用 c++0x 编译我的第一段代码。我对 C++ 很擅长,但是这个让我很难过。以下将无法编译:

#include <iostream>
#include <random>

int main()
{
   unsigned     seed = 12345;
   std::mt19937 generator(seed);

   std::uniform_real_distribution<double> distro1(0.0, 1.0);
   for (unsigned int i = 0; i < 25; i++)
   {
      std::cout << "Help" << std::endl;
      std::cout << "Value  ==  " << distro1(generator) << std::endl;
   }
}

我编译如下:

g++ -std=c++0x myFile.cpp or with g++ -std=gnu++0x myFile.cpp

我得到的错误是:

myFile.cpp: In function ‘int main()’:
myFile.cpp:11: error: ‘uniform_real_distribution’ is not a member of ‘std’
myFile.cpp:11: error: expected primary-expression before ‘double’
myFile.cpp:11: error: expected ‘;’ before ‘double’
myFile.cpp:15: error: ‘distro1’ was not declared in this scope

G++ 是: g++ --version g++ (Debian 4.4.5-8) 4.4.5

奇怪的是,它编译通过了 mt19937 实例化,如果我只是调用mt19937::operator(),我会得到预期的输出。此外,如果我将分发切换到 normal_distribution,它会编译并输出“Help”行,但什么也不做。通过 可以看到该过程正在运行ps aux,但没有输出。

我错过了什么愚蠢的东西吗?我基本上从 cplusplus.com 复制了代码以显示 mwe。谢谢你的帮助

4

1 回答 1

2

您必须升级到更高版本的编译器(您的程序在 GCC 4.7.2 上编译得很好)。GCC 4.4.5 附带的标准库的实现显然不(完全)符合 C++11。

于 2013-05-20T21:57:24.280 回答