如何获取一个unsigned char*类型的字符串长度

如何获取一个unsigned char*类型的字符串长度


慕运维8079593
浏览 676回答 2
2回答

月关宝盒

char*转换Qt下面,字符串都用QString,确实给开发者提供了方便,想想VC里面定义的各种变量类型,而且函数参数类型五花八门,经常需要今年新那个类型转换Qt再使用第三方开源库时,由于库的类型基本上都是标准的类型,字符串遇的多的就是Char*类型在Qt下怎样将QString转char*呢,需要用到QByteArray类,QByteArray类的说明详见Qt帮助文档。因为char*最后都有一个‘/0’作为结束符,而采用QString::toLatin1()时会在字符串后面加上‘/0’方法如下:Qstring str;char* ch;QByteArray ba = str.toLatin1();ch=ba.data();这样就完成了QString向char*的转化。经测试程序运行时不会出现bug注意第三行,一定要加上,不可以str.toLatin1().data()这样一部完成,可能会出错。补充:以上方法当QString里不含中文时,没有问题,但是QString内含有中文时,转换为char*就是乱码,采用如下方法解决:方法1:添加GBK编码支持:#include <QTextCodec>QTextCodec::setCodecForTr(QTextCodec::codecForName("GBK"));QTextCodec::setCodecForLocale(QTextCodec::codecForName("GBK"));然后改变上面的第三行为:QByteArray ba = str.toLoacl8Bit(); toLoacl8Bit支持中文方法2:先将QString转为标准库中的string类型,然后将string转为char*,如下:std::string str = filename.toStdString();const char* ch = str.c_str();

肥皂起泡泡

 有两种方式:  1 使用数据类型强制转换,示例带如下:12unsigned&nbsp;char&nbsp;s[100]&nbsp;=&nbsp;"abcdef";int&nbsp;len&nbsp;=&nbsp;strlen((char*)s);  2 另外一种方式就是自己实现该方法,进行统计。  对于C/C++中的字符串,必须是以'\0'结尾的,因此可以如下做12345678910int&nbsp;getLen(const&nbsp;unsigned&nbsp;char&nbsp;s[]){&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;nLen&nbsp;=&nbsp;0;&nbsp;&nbsp;&nbsp;&nbsp;const&nbsp;unsigned&nbsp;char*&nbsp;p&nbsp;=&nbsp;s;&nbsp;&nbsp;&nbsp;&nbsp;while(*p!=0){&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;nLen++;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;p++;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;nLen;}&nbsp;
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

SQL Server