_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);