web-dev-qa-db-ja.com

エラー:C ++プログラムのコンパイル時に、このスコープでuint64_tが宣言されていません

以下に示すように、steady_clockのタイムスタンプ値を出力する簡単なプログラムを試しています。

#include <iostream>
#include <chrono>
using namespace std;
int main ()
{
  cout << "Hello World! ";
  uint64_t now = duration_cast<milliseconds>(steady_clock::now().time_since_Epoch()).count();
  cout<<"Value: " << now << endl;

  return 0;
}

しかし、このg++ -o abc abc.cppのようにコンパイルしていると、常にエラーが発生します。

In file included from /usr/include/c++/4.6/chrono:35:0,
                 from abc.cpp:2:
/usr/include/c++/4.6/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the upcoming ISO C++ standard, C++0x. This support is currently experimental, and must be enabled with the -std=c++0x or -std=gnu++0x compiler options.
abc.cpp: In function âint main()â:
abc.cpp:7:3: error: âuint64_tâ was not declared in this scope
abc.cpp:7:12: error: expected â;â before ânowâ
abc.cpp:8:22: error: ânowâ was not declared in this scope

私がしている何か問題はありますか?

9
user1950349

明らかに、私は特定のベストプラクティスに従っていませんが、あなたのために物事を機能させようとしているだけです

#include <iostream>
#include <chrono>
#include <cstdint> // include this header for uint64_t

using namespace std;
int main ()
{
  {
    using namespace std::chrono; // make symbols under std::chrono visible inside this code block
    cout << "Hello World! ";
    uint64_t now = duration_cast<milliseconds>(steady_clock::now().time_since_Epoch()).count();
    cout<<"Value: " << now << endl;
  }

  return 0;
}

次に、C++ 11を有効にしてコンパイルします(あなたの場合はc ++ 0x)

g++ -std=c++0x -o abc abc.cpp
8
Arun

stdint.hファイルを含める必要があります。

3
JerryYoung

本当に含めたい場合は、「#define__STDC_LIMIT_MACROS」を追加してください

参照: https://stackoverflow.com/a/3233069/6728794

0
liu bluse