集册 Java实例教程 使用函数创建和报告阵列信息

使用函数创建和报告阵列信息

欢马劈雪     最近更新时间:2020-01-02 10:19:05

498
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
使用函数创建和报告阵列信息

public class Main{
/** from 
N o w J a v a . c o m**/


    public static void MyFunction(int n) {

        int array[] = new int[n];

        int i;

        InformationArray(array);

    }



    public static void InformationArray(int[] t) {

        System.out.println("Size of array given in argument is:" + t.length);

    }
/**nowjava.com - 时代Java**/

    public static void main(String[] args) {


        
展开阅读全文