- 1
- 0
- 约9.08千字
- 约 37页
- 2025-12-10 发布于湖北
- 举报
Chapter2Array2.1DeclaringandCreatingArrays2.4CopyingArrays2.2ArrayInitialize2.3Two-demensionArrays2.5PassingArraytomethods
IntroducingArraysArrayisadatastructurethatrepresentsacollectionofthesametypesofdata.
DeclaringArrayVariablesdatatype[]arrayRefVar; Example:double[]myList;datatypearrayRefVar[];//Thisstyleiscorrect,butnotpreferredExample:doublemyList[];inta[];=int[]a;int[]a,b;≠inta[],b;
CreatingArraysFormat:arrayRefVar=newdatatype[arraySize];Example:myList=newdouble[10];DefaultValue:Whenanarrayiscreated,itselementsareassignedthedefaultvalueof0forthenumericprimitivedatatypes\u0000forchartypesfalseforbooleantypes
CreatingArrayse.g.:myList.lengthreturns10TheLengthofanArray:Onceanarrayiscreated,itssizeisfixed.Itcannotbechanged.YoucanfinditssizeusingarrayRefVar.length
usenewtocreat:c=newchar[5];\u0000\u0000\u0000\u0000\u000050x1234(chararray,5chardata)cCreatingArrays
CreatingArray:referencedatatypeArray:Point[]p=newPoint[3];nullnullnull30x1245(PointArray,3Pointdata)pp[0]p[1]p[2]CreatingArrays
weshouldusenewtoallocatememoryforeveryelements.0,0p[0]0x1245p0,0null30x24640x2466p[1]p[0]=newPoint();p[1]=newPoint();CreatingArray:CreatingArrays
DeclaringandCreatinginOneStepdatatype[]arrayRefVar=newdatatype[arraySize];e.g.:double[]myList=newdouble[10];datatypearrayRefVar[]=newdatatype[arraySize];e.g.:doublemyList[]=newdouble[10];
00030x4567ainta[]=newint[3];a[0]a[1]a[2]a.lengthExample:DeclaringandCreatinginOneStep
ArrayInitializeDeclaring,creating,initializinginonestep:e.g.:int[]a={1,2,3,4,5};String[]s={“abc”,“def”};String[]s={newString(“abc”),newString(“def”)};Thisshorthandsyntaxmu
您可能关注的文档
- 模板-黄昏落日.ppt
- 英语语法课件.pptx
- 俄矿运输工区输送机司机考核题库.ppt
- 网页设计与制作课件第5章 CSS样式与模板的使用.ppt
- 危险源辨识与风险评价及控制策划.ppt
- 1010线条电脑科技模板.ppt
- 第二讲 支持向量机技术.ppt
- 医学统计学复习重点总结.ppt
- 诚信主题班会.ppt
- 中国经济发展与转型(英文版).ppt
- 河北盐山中学等校2025-2026学年上学期高三一模化学试卷(含解析).docx
- 河北正定中学2025-2026学年高一上学期期末考试物理试卷(含解析).docx
- 河北张家口市怀安县2025-2026学年第一学期期末教学综合评价八年级地理试卷(含解析).docx
- 河南安阳市殷都区2025-2026学年第一学期期末教学质量检测七年级地理试卷(含解析).docx
- 河南安阳市滑县2025一2026学年第一学期期末学业质量监测八年级地理试题(含解析).docx
- 河南安阳市林州市2025-2026学年上学期期末考试高一政治试题(含解析).docx
- 河南焦作市武陟县第一中学2025-2026学年高一上学期1月月考语文试卷(含解析).docx
- 河南济源市2025-2026学年上学期期末学业质量调研七年级历史试卷(含解析).docx
- PICC导管并发症的紧急处理与护理.pptx
- 河南鹤壁市2025-2026学年高二上学期期末考试生物试题(含解析).docx
原创力文档

文档评论(0)