为什么我不能编译结构化绑定?

时间:2018-04-13 07:06:10

标签: c++ g++ c++17 clang++

我正在尝试编译此代码(在test.cpp文件中)

#include<tuple>

int main(){
  auto [c,d] = make_tuple(3.1,2.3);
}
使用

     g++ -std=c++17 test.cpp -o test , 以及      clang++ -std=c++1z test.cpp -o test 两者都会打印错误信息:

test.cpp: In function ‘int main()’:
test.cpp:3:7: error: expected unqualified-id before ‘[’ token
auto [c,d] = make_tuple(3.1,2.3);
使用

g ++(Ubuntu 5.4.0-6ubuntu1~16.04.9)5.4.0 20160609 和 clang版本3.8.0-2ubuntu4 (使用Ubuntu 16.04.09) 我错过了什么?

1 个答案:

答案 0 :(得分:9)

来自GCC的官方网站:

  • gcc版本7
  • 支持结构化绑定

来自clang的官方网站:

  • 版本4中支持结构化绑定。

以下链接提供了对新C ++功能的编译器支持。 https://en.cppreference.com/w/cpp/compiler_support