首页 > 编程语言 > 详细

Java类对象数组声明和初始化

时间:2017-04-13 08:44:44      阅读:197      评论:0      收藏:0      [点我收藏+]

      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类对象数组声明和初始化

原文:http://www.cnblogs.com/liguangsunls/p/6702236.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!