gpt4 book ai didi

Java 对象转换为整数和字符串包装器

转载 作者:行者123 更新时间:2023-12-01 19:01:41 25 4
gpt4 key购买 nike

我有一个函数的 java.lang.Object 返回类型。我想验证返回的任何 Object 值是否为数字类型(doublelongint byteDoubleLongByteFloatDouble ....) 如果它是 true 想要转换为 Integer 包装引用类型。此外,如果 Object 实例包含一个 String 值,我希望将其存储在 String 引用中。

最佳答案

Have a Object return type from a function. I want to verify whatever Object value returned is of numeric type(double or long or int or byte or Double or Long or Byte or Float or Double ....)

if (obj instanceof Number)
...


if it's true want to convert into a Integer wrapper reference type

if ...
val = (Integer) ((Number) obj).intValue();


Also If the Object instance holds a String value i want it to be stored in a String reference.

...
else if (obj instanceof String)
val = obj;

关于Java 对象转换为整数和字符串包装器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12050092/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com