Java类对象数组声明和初始化
Posted liguangsunls
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java类对象数组声明和初始化相关的知识,希望对你有一定的参考价值。
Java是纯面向对象语言。类是其重要构成单位。
然后,在实际编程中,我们会自己定义一些类,如Point
<span style="font-size:14px;">public class Point { public Point(){ Lat=0.0; Lng=0.0; } public double GetLat(){ return Lat; } public double GetLng(){ return Lng; } public void SetLat(double pLat){ Lat=pLat; } public void SetLng(double pLng){ Lng=pLng; } private double Lat; private double Lng; }</span>诸如。这种实体类,我们常常会要用到其对象数组。
可是,Java其中对象数组的声明与初始化不同于其固定类型的声明和初始化。以下请看。
<span style="font-size:14px;">//Init class Point points=new Point[totalPoints];//statement of points Array //Initing for(int i=0;i<totalPoints;i++){ points[i]=new Point(); }</span>
以上是关于Java类对象数组声明和初始化的主要内容,如果未能解决你的问题,请参考以下文章