gpt4 book ai didi

java - 返回函数 String 中的整数

转载 作者:行者123 更新时间:2023-11-30 03:10:21 25 4
gpt4 key购买 nike

如何在函数 String 中返回整数

这是我的代码

public class Utils {
public static String type(String s){
if(UraniumProtectMain.materialname){
return s;
} else {
return Integer.parseInt(s); //<--- It's
}
}
}

最佳答案

当你想同时返回 Integer 和 String 时,你可以使用返回类型作为 Object 类,因为 Object 是所有类的父类(super class),我们可以在 Object 变量中保存任何类型的值。

public static Object type(String s){    
// code here
}

现在可以借助instanceOf方法按类型获取返回值的类型

if(Utils.type() instaceOf String)
{
// code here
} else if(Utils.type() instanceOf Integer) {
// code here
}

关于java - 返回函数 String 中的整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33750242/

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