会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Programming is an art
Focus on programming techniques, not on language features
CnBlogs
Home
New Post
Contact
Admin
Subscription
2014年12月25日
Java 数组基础
数组(Array):相同类型数据的集合。定义数组 方式1(推荐,更能表明数组类型) type[] 变量名 = new type[数组中元素的个数]; 比如: int[] a = new int[10]; 数组名,也即引用a,指向数组元素的首地址。 方式2(同C语言) type变量名[...
Read More
posted @ 2014-12-25 09:40 汪强胜
Views(145)
Comments(0)
Diggs(0)
Edit
公告