我如何在java中将对象转换为int型?


当前回答

首先使用instanceof关键字进行检查。如果为真,则转换它。

其他回答

so divide1=me.getValue()/2;

int divide1 = (Integer) me.getValue()/2;

对象变量;hastaId

Object hastaId = session.getAttribute("hastaID");

例如,将一个对象转换为int类型,即hasaid

int hastaID=Integer.parseInt(String.valueOf(hastaId));

答:

int i = ( Integer ) yourObject;

如果你的对象已经是一个整数,它将顺利运行。即:

Object yourObject = 1;
//  cast here

or

Object yourObject = new Integer(1);
//  cast here

etc.

如果你的对象是其他类型的对象,你需要先将它(如果可能的话)转换为int类型:

String s = "1";
Object yourObject = Integer.parseInt(s);
//  cast here

Or

String s = "1";
Object yourObject = Integer.valueOf( s );
//  cast here

你不能。int不是Object。

虽然整数是一个对象,但我怀疑这是你的意思。

首先使用instanceof关键字进行检查。如果为真,则转换它。