将 long int 转换为 wxString
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从long到wxString的转换:
从long long的转换:
Conversion from long to wxString:
Conversion from long long:
参考 wxString::Format 表示它使用
Printf
函数类似于sprintf
,它有l
修饰符long int
,所以看来你应该使用%li
格式Reference to wxString::Format says that it uses
Printf
function that is likesprintf
, that hasl
modifiter forlong int
, so it seems you should use%li
format