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

c++ string的size()函数和length()函数

时间:2014-07-28 13:45:40      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:代码   算法   c++   type   size   c语言   return   函数   

C++标准库中的string中两者的源代码如下:   

   size_type   __CLR_OR_THIS_CALL   length()   const    

   { //   return   length   of   sequence    

         return   (_Mysize);    

   }        

   size_type   __CLR_OR_THIS_CALL   size()   const    

   { //   return   length   of   sequence    

         return   (_Mysize);    

    }         

所以两者没有区别。

length是因为沿用C语言的习惯而保留下来的,string类最初只有length,引入STL之后,为了兼容又加入了size,它是作为STL容器的属性存在的,便于符合STL的接口规则,以便用于STL的算法。

c++ string的size()函数和length()函数,布布扣,bubuko.com

c++ string的size()函数和length()函数

标签:代码   算法   c++   type   size   c语言   return   函数   

原文地址:http://www.cnblogs.com/myyan/p/3872413.html

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