将 long int 转换为 wxString

发布于 2025-01-05 04:37:28 字数 406 浏览 3 评论 0原文

在wxWiki中我找到了这个页面http://wiki.wxwidgets.org/Converting_everything_to_and_from_wxString。它描述了如何将int转换为wxString,但没有描述如何将long int转换为wxString

编译应用程序工作后,但编译器抛出此警告两次(我将 long int 转换为 wxString 两次):

[警告] int 格式,long int arg (arg 3)

In wxWiki i found this page http://wiki.wxwidgets.org/Converting_everything_to_and_from_wxString. It describes how to convert int to wxString, but doesn't describe how to convert long int into wxString.

After compilation application works, but compiler throws this warning twice (I convert long int to wxString twice):

[Warning] int format, long int arg (arg 3)

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

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

发布评论

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

评论(2

就像说晚安 2025-01-12 04:37:28

longwxString的转换:

long l;
...
wxString strLong = wxString::Format(wxT("%ld"), l);

long long的转换:

wxLongLong ll;
... 
wxString strLongLong = ll.ToString();

Conversion from long to wxString:

long l;
...
wxString strLong = wxString::Format(wxT("%ld"), l);

Conversion from long long:

wxLongLong ll;
... 
wxString strLongLong = ll.ToString();
秋心╮凉 2025-01-12 04:37:28

参考 wxString::Format 表示它使用 Printf 函数类似于 sprintf,它有 l 修饰符 long int,所以看来你应该使用 %li 格式

Reference to wxString::Format says that it uses Printf function that is like sprintf, that has l modifiter for long int, so it seems you should use %li format

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