练习2.36
关于下面的代码,请指出每一个变量的类型以及此程序结束时他们各自的值。
int a = 3, b = 4;
decltype(a) c = a;
decltype((b)) d = a;
++c;
++d;
解答:
a为4
b为4
c为4
d为4
练习2.37
赋值会产生引用的一类典型表达式,引用的类型就是左值的类型。也就是说,如果i是int,则表达式i=x的类型是int&。根据这一特点,指出下面代码中每一个变量的类型和值。
int a = 3. b = 4;
decltype(a) c = a;
decltype(a = b) d = a;
解答:
c是int型, d是int&型
练习2.38
说明由decltype指定类型和由auto指定类型有何区别。请举出一个例子,decltype指定的类型与auto指定的类型一样;再举一个例子,decltype指定的类型与auto指定的类型不一样。
解答:
decltype(foo()) x = foo();
auto x = foo();
参考:
http://www.zhihu.com/question/24754399/answer/29073870
http://zuyunfei.com/2013/04/06/c-plus-plus-11-auto-and-decltype/