如何将对象转换为int

发布于 2024-10-12 18:12:04 字数 161 浏览 2 评论 0原文

我想将一个对象转换为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 技术交流群。

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

发布评论

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

评论(2

善良天后 2024-10-19 18:12:04

使用 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?

旧梦荧光笔 2024-10-19 18:12:04

如果 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.

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