c++地址字符串->长的
我有一个地址示例: 0x003533 ,它是一个字符串,但要使用它,我需要它是一个 LONG 但我不知道该怎么做:S 有任何人有解决方案吗?
所以字符串:“0x003533”到长0x003533?
I got an adress example: 0x003533 , its a string but to use it i need it to be a LONG but i dont know how to do it :S has anybody a solution?
so string: "0x003533" to long 0x003533 ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 strtol() ,如下所示:
Use strtol() as in:
编辑:
正如Potatocorn在评论中所说,您还可以使用
boost::lexical_cast
如下所示:EDIT:
As Potatocorn said in the comments, you can also use
boost::lexical_cast
as shown below: