//---- Object可以通过基本类型赋值
int the_int = 0;
Object o = the_int;
//---- Object强制转换成基本类型不成功
the_int = (int)o;
//---- Object转int的方法
public class ObjectTest {
public static void main(String [] args)
{
Object code = "4";
int codeInt = Integer.parseInt((String) code);
System.out.println(codeInt );
}
}