decltype
- 网络类型;类型获取
decltype
decltype
类型
...References);Part 3:介绍了表达式类型(decltype)翻译:飘飘白云
类型获取
类型获取(Decltype) 既然编译器能够推断一个变量的类型,那么我们在代码中就应该能显示地获得一个变量的类 型信息。所 …
1
Listing 15 applies the decltype operator on a variable and shows the usage of the operator with an expression.
清单15对一个变量应用decltype操作符,演示对表达式使用这个操作符的方法。
2
Enter the decltype operator from C++0x, which returns the type of a variable or expression.
对于C++0x,输入decltype操作符就会返回变量或表达式的类型。