2

我只是想在 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>)

非常感谢您的帮助!

谢谢

4

1 回答 1

2

如果你正在使用TLex8,你必须使用TBuf8.

试试这个(我的 Symbian C++ 生锈了,但这应该很接近):

TBuf8<2> buf;
buf.Copy(_L8("10"));

TInt valInt;
TLex8 lex(buf);
lex.Val(valInt);
于 2009-08-07T12:35:14.437 回答