• 可变参数列表 java


    Thinking in Java(3)

    1. 可变参数列表

    1.1 使用Object数组参数

    import java.util.*;
    
    class A {}
    
    public class VarArgs {
            static void printArray(Object[] args) {
                    for(Object obj : args) {
                            System.out.println(obj + " ");
                    }
                    System.out.println();
            }
            public static void main(String[] args) {
                    printArray(new Object[] {new Integer(47), new Float(3.14), new Double(11.11)});
                    printArray(new Object[] {"one", "two", "three"});
                    printArray(new Object[] { new A(), new A(), new A() });
            }
    }
    
    result
    47 
    3.14 
    11.11 
    
    one 
    two 
    three 
    
    A@69d4c4b7 
    A@fbf00a9 
    A@44c45f52
     
    

    最后一个结果,如果java类没有实现toString()方法的话,那么默认输出类名和地址。

    1.2 使用可变参数列表

    import java.util.*;
    
    class A {}
    
    public class NewVarArgs {
            static void printArray(Object... args) {
                    for(Object obj : args) { 
                            System.out.println(obj + " ");
                    }
                    System.out.println();
            }
    
            public static void main(String[] args) {
                    printArray(new Integer(47), new Float(3.14), new Double(11.11));
                    printArray(47, 3.14, 11.11);
                    printArray("one", "two", "three");
                    printArray(new A(), new A(), new A());
                    printArray((Object[])new Integer[] {1, 2, 3, 4});
                    printArray();
            }
    }
    
    
    47 
    3.14 
    11.11 
    
    47 
    3.14 
    11.11 
    
    one 
    two 
    three 
    
    A@384e23c3 
    A@120df416 
    A@5213d99c 
    
    1 
    2 
    3 
    4 
    
    
    
    

    从上面可以看出,可变参数列表可以为空。

  • 相关阅读:
    个人网站第一期完成
    nodebb在阿里云主机部署过程
    mongoengine教程1
    quick cocos 的scheduler 定时器
    cocos2dx调度器scheduler
    Cocos2d-x中Vector使用
    Google分布式系统三驾马车: GFS,mapreduce,Bigtable
    Linux使用记
    Eclipse快捷键总结
    详解iOS App生命周期(转)
  • 原文地址:https://www.cnblogs.com/xingxing1024/p/7468194.html
Copyright © 2020-2023  润新知