_LIT(Str, "Hello");
TPtrC stringInRom = Str;
CAknInformationNote* informationNote;
informationNote = new (ELeave) CAknInformationNote;
informationNote->ExecuteLD(Str);
用一个标签的形式打印出来
实现两个字符串相加
_LIT(Str, "Hello");
_LIT(Str1, " world");
TBuf<40> buf;
buf.Append(Str);
buf.Append(Str1);
本文介绍了一个使用Symbian C++进行字符串操作的例子,包括如何创建字符串、将两个字符串连接起来并显示结果。
360

被折叠的 条评论
为什么被折叠?



