Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么在进行类型转换时使用 Integer.parseint()?
也许问这个问题的另一种方式是:
什么时候应该在类型转换上使用 Integer.parseint()?
类型转换用于使一种类型的对象分配给另一种类型,而无需更改或解析对象的内容。而 parseInt 方法解析字符串值并将其转换为整数值,即将字符串值转换为整数。
类型转换与对象的内容无关。它仅用于将一种类型的引用类型分配给另一种类型。例如:Object obj = new String(""); String string = (String) obj;
Object obj = new String(""); String string = (String) obj;