码迷,mamicode.com
首页 > 编程语言 > 详细

c++ primer 6.3.3节练习答案

时间:2017-08-03 16:51:43      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:程序   c++   div   别名   decltype   简单   class   ptr   pre   

练习6.36

1 string (& array(string str)) [10];
1 auto array(string str)->string (&) [10];
1 using strr = str[10];
2 strr & array(string str);

练习6.37

1 decltype(str[10]) & array(string str1);

个人觉的一般情况下使用类型别名和尾置返回类型比较简单,程序的观感比较强,特殊情况下使用第一种或decltype会更好。

练习6.38

1 decltype(odd) &arrPtr(int i);

 

c++ primer 6.3.3节练习答案

标签:程序   c++   div   别名   decltype   简单   class   ptr   pre   

原文地址:http://www.cnblogs.com/wuyinfenghappy/p/7280202.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!