标签:自己 ret for nts content ++ 类对象 java类 bsp
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>
标签:自己 ret for nts content ++ 类对象 java类 bsp
原文地址:http://www.cnblogs.com/liguangsunls/p/6702236.html