java中一维数组是什么

本教程操作环境:windows7系统、java10版,DELL G3电脑。

1.定义

数组是相同类型的数据按顺序组成的一种引用数据类型。

2.声明

语法格式

数据类型[]数组名;int[]myIntArray;char[]ch;String[]strArray;

数据类型

数组名[];intmyIntArray[];char[]ch;StringstrArray[];

3.创建方式

//数组创建1:引用,对象,元素
int[]aa;
int[]a=newint[10];
int[]aaa=newint[0];//空数组
//创建方式2:声明,创建,
int[]b=newint[]{1,2};
String[]strings=newString[]{"HelloWorld"};
//创建方式3:
int[]c={1,2,3};
String[]strings2={"World"};
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容