码迷,mamicode.com
首页 > 编程语言 > 详细

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

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

标签:自己   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>



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

标签:自己   ret   for   nts   content   ++   类对象   java类   bsp   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!