如何将对象转换为int
我想将一个对象转换为int类型...... 例如: 对象 obj=........; int count = Integer.parseInt((String) obj);
当我使用上面的代码时,ai 出现了强制转换异常。
有人知道如何将对象转换为 int...?
I want to convert an object to int type....
eg:
Object obj=........;
int count = Integer.parseInt((String) obj);
when i use above code ai got cast exception.
Anyone know how to cast object to int...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 obj.hashCode( ),获取代表该对象的 int。但你的目的是什么?您发布的代码不起作用 - 您尝试将对象转换为字符串而不是调用 toString(),但即便如此,除非对象的 toString 表示形式本身是整数,否则调用 Integer.parseInt 将引发异常。
那么你的目的是什么?
Use obj.hashCode(), to get an int that represents the object. But what is your purpose? The code you posted does not work - you try to cast the object to a string rather than calling toString(), but even then, unless the toString representation of the object is itself an integer, calling Integer.parseInt on it will throw an exception.
So what are you aiming at?
如果 tableres 是 Hashtable,则值可能是 Integer,而不是 int。
在这种情况下,请尝试:
int i = ((Integer) tableres.get ("mCount")).intValue();
祝你好运,-MS
If tableres is a Hashtable, the values are prolly Integer, not int.
In that case, try:
int i = ((Integer) tableres.get ("mCount")).intValue();
Good luck, - M.S.