摘要: 数组是我们在编程中常用到的一种数据结构。 数组创建有三种方式,以int类型为例: 1.int value[] = new int[]{1,2,3,4,5}; //{}中的是元素 2.int value[] = {1,2,3,4,5}; //{}中的是元素 3.int value[] = new in 阅读全文
posted @ 2016-11-29 20:35 aston 阅读(164) 评论(0) 推荐(0) 编辑