第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何檢查類型化類<?>的類型

如何檢查類型化類<?>的類型

繁花如伊 2023-08-09 16:25:02
我在已聲明為接受參數(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í)行
查看完整描述

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í)行


查看完整回答
反對 回復(fù) 2023-08-09
?
月關(guān)寶盒

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í)行


查看完整回答
反對 回復(fù) 2023-08-09
?
MYYA

TA貢獻(xiàn)1868條經(jīng)驗(yàn) 獲得超4個贊

該 if 語句永遠(yuǎn)不會起作用,因?yàn)槟膶ο笫?的實(shí)例Class<?>。這將起作用:

if (o == Integer.class)
    System.out.println("Integer")


查看完整回答
反對 回復(fù) 2023-08-09
  • 3 回答
  • 0 關(guān)注
  • 187 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號