考试要点分享——SCJP考点总结
Certification Key for SCJP1.4
Section 1 Declarations and Access Control
Objective 1, Creating Arrays
Write code that declares, constructs and initializes arrays of any base type using any of the permitted forms, both for declaration and for initialization
目标1, 创建数组
采用不同的格式来编写任一基本数据类型数组的声明,构造及初始化的代码。
数组是一连串对象或基本数据,它们必须同型,并以一个标识符封装在一起。数组好象一个对象,通过new关键字来创建。
声明数组
数组的声明并不能为数组分配内存。声明时数组不能有大小信息,也就是说编译器并不允许你告诉它究竟数组有多大,它只是一个reference(引用),并没有对应的空间。声明数组的方式有: int a1; int a1两种,int num是错误的数组声明方式。
声明并创建数组
声明一个数组并同时为它分配内存。
Int num =new int;
声明并初始化数组
声明一个数组并同时进行初始化。
Int num=new int{0,1,2,3,4};
Int num=new int{0,1,2,3,4}; //!错误
数组知道自己的大小
与c++不同,数组知道自己的大小,当数组越界时,会抛出ArrayIndexOutOfBoundsException异常。数组具有length属性(不是length()方法),它能告诉你数组的大小。
多维数据
int m ; int m; int m;
数组的缺省值
与其它的变量不同,不论数组在向处创建,它总是使用可以使用缺省值。
示例:
public class MyAr{
public static void main(String argv){
int i = new int;
int i; //!编译错误
int m={{1,2,3,4},{2,3,4,5},{4,5,6,7}};
int n={{1,2,3,4},{2,3,4,5},{4,5,6}};
int j;
m=n;
for(int k=0;k
编辑推荐:
温馨提示:因考试政策、内容不断变化与调整,长理培训网站提供的以上信息仅供参考,如有异议,请考生以权威部门公布的内容为准! (责任编辑:长理培训)
点击加载更多评论>>