面向对象第二章

Posted ahaijava

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面向对象第二章相关的知识,希望对你有一定的参考价值。

1.引用类型数组: 1)Student[] stus = new Student[3]; //创建Student数组对象 stus[0] = new Student("zhangsan",25,"LF"); //创建Student对象 stus[1] = new Student("lisi",26,"JMS"); stus[2] = new Student("wangwu",28,"SD"); System.out.println(stus[0].address); 2)Student[] stus = new Student[]{ new Student("zhangsan",25,"LF"), new Student("lisi",26,"JMS"), new Student("wangwu",28,"SD") }; 3)int[][] arr = new int[3][];-----------数组的数组 arr[0] = new int[2]; arr[1] = new int[3]; arr[2] = new int[2]; arr[1][0] = 100; 4)int[][] arr = new int[3][4];----------数组的数组 for(int i=0;i

以上是关于面向对象第二章的主要内容,如果未能解决你的问题,请参考以下文章

第二章-面向对象基础#yyds干货盘点#

第二章:理解面向对象

面向对象分析-第二节:面向对象分析之建立对象模型

第二章.理解面向对象

面向对象方法学-第二节:面向对象的概念

面向对象第二章