gpt4 book ai didi

c++ - decltype 在 gcc 4.3.2 中不能正常工作?

转载 作者:搜寻专家 更新时间:2023-10-30 23:49:03 24 4
gpt4 key购买 nike

#include <iostream>
#include <map>
using namespace std;

int main()
{
int x = 5;
decltype(x) y = 10;
map<int, int> m;
decltype(m) n;
decltype(m)::iterator it;
}

g++ -std=c++0x main.cpp

main.cpp: In function `int main()':
main.cpp:11: error: expected initializer before `it'

前 2 个 decltype 有效。第三个导致编译器错误。是不是这个gcc版本的问题?

g++ -v
Using built-in specs.
Target: x86_64-suse-linux
Configured with: ../configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib64 --libexecdir=/usr/lib64 --enable-languages=c,c++,objc,fortran,obj-c++,java,ada --enable-checking=release --with-gxx-include-dir=/usr/include/c++/4.3 --enable-ssp --disable-libssp --with-bugurl=http://bugs.opensuse.org/ --with-pkgversion='SUSE Linux' --disable-libgcj --disable-libmudflap --with-slibdir=/lib64 --with-system-zlib --enable-__cxa_atexit --enable-libstdcxx-allocator=new --disable-libstdcxx-pch --enable-version-specific-runtime-libs --program-suffix=-4.3 --enable-linux-futex --without-system-libunwind --with-cpu=generic --build=x86_64-suse-linux
Thread model: posix
gcc version 4.3.2 [gcc-4_3-branch revision 141291] (SUSE Linux)

最佳答案

使用 decltype 表达式来形成限定 id (type::type) 的能力是最近才添加到 C++0x 工作文件中的(好吧,一年前) , 但它将成为完成标准的一部分。所以你写的代码实际上是格式良好的 C++0x。最终 gcc 会 catch 来。

在此期间,您可以使用类似的东西

#include <map> 
template<typename T>
struct decltype_t
{
typedef T type;
};

#define DECLTYPE(expr) decltype_t<decltype(expr)>::type

int main()
{
std::map<int, int> m;
decltype(m) n;
DECLTYPE(m)::iterator it; // works as expected
}

不过,如果你像我一样,你会发现不得不诉诸这些技巧很愚蠢:)

关于c++ - decltype 在 gcc 4.3.2 中不能正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5257317/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com