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

[C++]Reference to array as function parameter

时间:2014-09-11 16:40:42      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   div   sp   cti   log   

template< std::size_t N >
void f(char (&arr)[N])
{
  std::cout << sizeof(arr) << \n;
}

此时数组不会退化为指针(C++11 section 8.3.5.5)

[C++]Reference to array as function parameter

标签:style   blog   color   io   ar   div   sp   cti   log   

原文地址:http://www.cnblogs.com/gomopsivarh/p/3966636.html

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