设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 717|回复: 0
打印 上一主题 下一主题

[求助]关于string类的一些问题

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-5 01:00:14 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
这是书本上的代码`` 我想问的是红字部分,为什么要用常应用呢,似乎直接用值传递也可以达到同样的效果;
还有书上的运行结果是
size:0
length:0
capacity:0
max size:4294967293
size:16
length:16
capacity:31
max size:4294967293
size:10
length:10
capacity:31
max size:4294967293

但我运行后的结果是
size:0
length:0
capacity:15
max size:4294967294
size:16
length:16
capacity:31
max size:4294967294
size:10
length:10
capacity:15
max size:4294967294
(我用的是vc++2005)为什么会不一样呢?


#include <iostream>
#include <string>
using namespace std;
void PrintAttribute(congst string &str);
void main()
{
string s1,s2;
PrintAttribute(s1);
s1="My string object";
PrintAttribute(s1);
s2="new string";
PrintAttribute(s2);
system("pause");
}
void PrintAttribute(const string &str)
{
cout<<"size:"<<str.size()<<endl; //返回串长
cout<<"length:"<<str.length()<<endl; //返回串长
cout<<"capacity:"<<str.capacity()<<endl; //返回容量
cout<<"max size:"<<str.max_size()<<endl; //返回最大允许串长

}
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 11:38 , Processed in 0.124631 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表