TBuf 到 Tint Symbian

发布于 2024-07-30 17:26:35 字数 372 浏览 8 评论 0原文

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

非常感谢帮助!

谢谢

I simply wanna convert a TBuf to TInt in Symbian. I tried to do it the following way:

TBuf<2> buf;
buf.Copy( _L("10"));

TInt valInt;
TLex8 lex(buf);
lex.Val(valInt);

Here I get then the error message:

Error:  #289: no instance of constructor "TPtrC8::TPtrC8" matches the argument list
        argument types are: (TBuf<2>)

Help would be very much appreciated!

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吹泡泡o 2024-08-06 17:26:35

如果您使用TLex8,则必须使用TBuf8

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

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

TInt valInt;
TLex8 lex(buf);
lex.Val(valInt);

If you are using TLex8, you have to use TBuf8.

Try this (My Symbian C++ is rusty, but this should be close):

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

TInt valInt;
TLex8 lex(buf);
lex.Val(valInt);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文