- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
java数组java数组
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved. 0132130807 第4讲 数组Arrays汪华登桂林电子科技大学计算机科学与工程学院 数组是一种数据结构? 数据结构(Data Structure) 链表: 特点? 顺序表: 特点? 数组属于哪一种? 特点? Single Dimensional Arrays一维数组 Introducing Arrays Declaring Array Variables(数组变量的声明) datatype[] arrayRefVar; Example: double[] myList; datatype arrayRefVar[]; // 也可以,但不被推荐 Example: double myList[]; Creating Arrays(生成数组元素) arrayRefVar = new datatype[arraySize]; Example: myList = new double[10]; myList[0] 代表数组中的第一个元素. myList[9]代表数组中的最后一个元素. Declaring and Creatingin One Step(声明和定义一步完成) 形式:datatype[] arrayRefVar = new datatype[arraySize]; 例如: double[] myList = new double[10]; The Length of an Array(获取数组长度) Once an array is created, its size is fixed. It cannot be changed. You can find its size using arrayRefVar.length For example, myList.length returns 10 Default Values(数组元素缺省值) When an array is created, its elements are assigned the default value of 0 for the numeric primitive data types, \u0000 for char types, and false for boolean types. 编译器里检验看看? Indexed Variables(数组下标) The array elements are accessed through the index. The array indices are 0-based, i.e., it starts from 0 to arrayRefVar.length-1. In the example in Figure 6.1, myList holds ten double values and the indices are from 0 to 9. Each element in the array is represented using the following syntax, known as an indexed variable: arrayRefVar[index]; Using Indexed Variables(下标使用) After an array is created, an indexed variable can be used in the same way as a regular variable. For example, the following code adds the value in myList[0] and myList[1] to myList[2]. myList[2] = myList[0] + myList[1]; Array Initializers(数组初始化) Declaring, creating, initializing in one step: double[] myList = {1.9, 2.9, 3.4, 3.5}; Declaring, creating, initializing Using the Shorthand Notation double[] myList = {1.9, 2.9, 3.4, 3.5}; 等价于下面的语句: double[] myList = new doubl
文档评论(0)