我不是程序员,而是测试人员。但是有时候我写代码。 我想要一个函数或类自己将输入类型分开。 我无法通过建筑来做到这一点。 流程图如下。 你可以领导吗?
答案 0 :(得分:0)
public static void main(String[] args) {
getType(5);
}
private static void getType(Object input)
{
if(input instanceof String){
/// code
}
else if(input instanceof Integer)
{
///code
}
else {
///code
}
}