标签:
变量是程序中最基本的存储单元,从本质上讲,变量其实是内存中的一小块区域。所以要为其分配一定的存储空间。
public class Test{
	
	public static void main(String args[]){
		
		Test test = new Test();
		int Date = 9;
		BirthDate d1 = new BirthDate(7,7,1970)
	}
}版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/wangnayu/article/details/48105487