我只是想在 Symbian 中将 TBuf 转换为 TInt。我试图通过以下方式做到这一点:
TBuf<2> buf;
buf.Copy( _L("10"));
TInt valInt;
TLex8 lex(buf);
lex.Val(valInt);
在这里我收到错误消息:
Error: #289: no instance of constructor "TPtrC8::TPtrC8" matches the argument list
argument types are: (TBuf<2>)
非常感谢您的帮助!
谢谢