gpt4 book ai didi

c++ - 如何解决 MSVC 2012 中的 `using K = ...`?

转载 作者:太空狗 更新时间:2023-10-29 23:50:51 25 4
gpt4 key购买 nike

MSVC 2012 似乎不支持 using K = ...; 类型声明。例如,使用代码:

template <class Map>
inline void foo(Map &m)
{
using K = typename Map::key_type;
using V = typename Map::mapped_type;
// ...
}

结果是语法错误:

error C2143: syntax error : missing ';' before '='
error C2873: 'K' : symbol cannot be used in a using-declaration

如何在不升级编译器的情况下解决 MSVC 2012 缺少的这个功能?

最佳答案

Microsoft 对 C++11 的支持是不完整的,这是 VS2012 中缺少的内容之一。但在这种情况下,您应该能够使用老式的 typedef;例如:

typedef typename Map::key_type K;

这个变通办法失败的地方是当类型被模板化时:

template<typename T>
using Bar = Foo<T>; // ok if your compiler supports it

template<typename T>
typedef Foo<T> Bar; // doesn't compile

但是你至少还有这个选择:

template<typename T>
struct Bar
{
typedef Foo<T> type;
};

关于c++ - 如何解决 MSVC 2012 中的 `using K = ...`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26241427/

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