zoukankan      html  css  js  c++  java
  • 可变参数列表 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 
    
    
    
    

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

  • 相关阅读:
    Hive
    Hadoop简介与分布式安装
    Hadoop分布式文件系统HDFS
    HDFS的操作SHELL和API
    HDFS高级功能
    Yarn
    Hadoop的I/O操作
    Hadoop的RPC工作原理
    Mapreduce入门和优化方案
    MapReduce的工作机制
  • 原文地址:https://www.cnblogs.com/xingxing1024/p/7468194.html
Copyright © 2011-2022 走看看