美文网首页
2021-10-26

2021-10-26

作者: 哈迪斯Java | 来源:发表于2021-10-26 18:17 被阅读0次

    public class VarParameterDetail {
    //编写一个main方法
    public static void main(String[] args) {
    //细节:可变参数的实参可以为数组
    int[ ] arr = {1,2,3};
    T t1 = new T();
    t1.f1(arr);
    }
    }
    class T i
    public void f1(int. . . nums) i
    system.out. println("长度=” + nums.length);
    }

    //细节:可变参数可以和普通类型的参数一起放在形参列表,但必须保证可变参数在最后public void f2 (String str, doubLe. . . nun){
    }
    }

    相关文章

      网友评论

          本文标题:2021-10-26

          本文链接:https://www.haomeiwen.com/subject/siryaltx.html