3 回答

TA貢獻(xiàn)1815條經(jīng)驗(yàn) 獲得超10個贊
我在已聲明為接受參數(shù)的方法中傳遞參數(shù)type class<?>...其他,在傳遞類似參數(shù)后,String.class我Integer.class想知道在此方法中傳遞的參數(shù)的類型(類)。
我收到了什么參數(shù),我將其轉(zhuǎn)換為對象并嘗試檢查類型,但它不起作用。
public void processVarargIntegers(String label, Class<?>... others) {
System.out.println(String.format("processing %s arguments for %s", others.length, label));
Arrays.asList(others).forEach(a -> {
try {
Object o = a;
if (o instanceof Integer) {
System.out.println(" >>>>>>>>>>>>> Integer");
}
} catch (Exception e) {
e.printStackTrace();
}
});
}
public void processVarargIntegers(String label, Class<?>... others) {
System.out.println(String.format("processing %s arguments for %s", others.length, label));
Arrays.asList(others).forEach(a -> {
try {
Object o = a;
if (o instanceof Integer) {
System.out.println(" Integer");
}
} catch (Exception e) {
e.printStackTrace();
}
});
}
如果 a 是整數(shù)的實(shí)例,System.out.println(" Integer");則應(yīng)執(zhí)行

TA貢獻(xiàn)1772條經(jīng)驗(yàn) 獲得超5個贊
我在已聲明為接受參數(shù)的方法中傳遞參數(shù)type class<?>...其他,在傳遞類似參數(shù)后,String.class我Integer.class想知道在此方法中傳遞的參數(shù)的類型(類)。
我收到了什么參數(shù),我將其轉(zhuǎn)換為對象并嘗試檢查類型,但它不起作用。
public void processVarargIntegers(String label, Class<?>... others) {
System.out.println(String.format("processing %s arguments for %s", others.length, label));
Arrays.asList(others).forEach(a -> {
try {
Object o = a;
if (o instanceof Integer) {
System.out.println(" >>>>>>>>>>>>> Integer");
}
} catch (Exception e) {
e.printStackTrace();
}
});
}
public void processVarargIntegers(String label, Class<?>... others) {
System.out.println(String.format("processing %s arguments for %s", others.length, label));
Arrays.asList(others).forEach(a -> {
try {
Object o = a;
if (o instanceof Integer) {
System.out.println(" Integer");
}
} catch (Exception e) {
e.printStackTrace();
}
});
}
如果 a 是整數(shù)的實(shí)例,System.out.println(" Integer");則應(yīng)執(zhí)行

TA貢獻(xiàn)1868條經(jīng)驗(yàn) 獲得超4個贊
該 if 語句永遠(yuǎn)不會起作用,因?yàn)槟膶ο笫?的實(shí)例Class<?>
。這將起作用:
if (o == Integer.class) System.out.println("Integer")
添加回答
舉報(bào)