码迷,mamicode.com
首页 > 其他好文 > 详细

string 中的 length函数 和size函数 返回值问题

时间:2014-08-13 22:02:37      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   os   io   数据   ar   问题   

 

string 中的 length函数size函数 的返回值  (  还有 char [ ] 中 测量字符串的  strlen 函数 )

应该是 unsigned int 类型的

不可以 和 -1 比较。

应尽量避免 unsigned int 类型 和 int类型 数据 的比较 。
unsigned int 类型 和 int类型 数据 比较 时 ,会 把int 类型 转换 为 unsigned int类型 。如果 int是负数 ,转换 为 unsigned int 会是 一个 很大 的正整数,所以 比较的时候 会危险
若 将 unsigned int 强制 转换 为 int 再比较 时,不能说 没有 问题。我觉得 也可能会 出现问题,相对来说 还是 比较好的。(摘自strlen返回值的问题

 

-------------------------------------------------------------------------------------------------------------------------

// 例1
// string a="abcd";
// -1 和 a.length() 的比较结果

//代码

#include<iostream>
#include<string>
using namespace std;
int main()
{
	string a="abcd";
	cout<<"a-----"<<a<<endl;
	cout<<"a.length()-----"<<a.length()<<endl;
	if( -1 >= a.length() )
		cout<<"*************"<<endl;
    return 0;
}

输出:

-------------------------------------------------------------------------------------------------------------------------

 

// 例2
// string a="abcd";
// -1 和 a.size() 的比较结果

//代码

#include<iostream>
#include<string>
using namespace std;
int main()
{
	string a="abcd";
	cout<<"a----"<<a<<endl;
	cout<<"a.size()----"<<a.size()<<endl;
	if(-1>=a.size())
		cout<<"*************"<<endl;
    return 0;
}

输出:

-------------------------------------------------------------------------------------------------------------------------

// 例3
// char a[100]="abcd";
// -1 和 strlen(a) 的比较结果

//代码

#include<iostream>
#include<string>
using namespace std;
int main()
{
	char a[100]="abcd";
	cout<<"a----"<<a<<endl;
	cout<<"strlen(a)----"<<strlen(a)<<endl;
	if( -1>=strlen(a) )
		cout<<"*************"<<endl;
    return 0;
}

输出:

a----abcd
strlen(a)----4
*************
Press any key to continue

 



 

string 中的 length函数 和size函数 返回值问题,布布扣,bubuko.com

string 中的 length函数 和size函数 返回值问题

标签:style   http   color   os   io   数据   ar   问题   

原文地址:http://www.cnblogs.com/bofengyu/p/3910906.html

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