std::array::size
constexpr size_type size() noexcept;
Parameters
none
Return Value
array中元素的数目。
原文地址:http://blog.csdn.net/qq844352155/article/details/38944721
———————————————————————————————————————————————————
std::array::max_size
constexpr size_type max_size() noexcept;
Parameters
none
Return Value
返回array所能存放元素的最大数目,
这是一个常量。
原文地址:http://blog.csdn.net/qq844352155/article/details/38943923
std::array::empty
constexpr bool empty() noexcept;
Parameters
none
Return Value
如果array的size为0,返回true,否则返回false
原文地址:http://blog.csdn.net/qq844352155/article/details/38879921
———————————————————————————————————————————————————
std::array::fill
void fill (const value_type& val);
原文地址:http://blog.csdn.net/qq844352155/article/details/38943777
std::array::swap
void swap (array& x) noexcept(noexcept(swap(declval<value_type&>(),declval<value_type&>())));
与x交换内容,x是一个同类型的array(包括大小)。
Parameters
-
x
x是同一类型的array(大小也一样),将要和本array交换内容的array.
Return value
none.
原文地址:http://blog.csdn.net/qq844352155/article/details/38944863
——————————————————————————————————————————————————————————————————
//总结的不好的地方请多多指导,可以在下面留言或者点击左上方邮件地址给我发邮件,指出我的错误以及不足,以便我修改,更好的分享给大家,谢谢。
转载请注明出处:http://blog.csdn.net/qq844352155
author:天下无双
Email:coderguang@gmail.com
2014-8-30
于GDUT
——————————————————————————————————————————————————————————————————