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.
System.Convert是否存在与.NET中执行相同操作的类型的 Java 等价物或 Java 库?
System.Convert
我想要一种方法,Object它可以采用并尽其所能将其转换为整数、长整数、字符串等。我可以轻松编写自己的方法,但我更喜欢在库中使用一个……
Object
我不确定,但我认为它们在 JAVA 中没有等价物。
但是您可以测试此解决方案:
public String convertString(Object oject1) { if ( oject1 instanceof Integer) { /// convert method return stringConvert } if ( oject1 instanceof Long) { /// Convert method } ...... }