Java 内部类简解

						建议:
	对内部类有一点了解再看,不然有点云里雾里

内部类的基本形式:

class Outer {   //外部类
	class Inner {     //内部类
        }
}
								下面是例子:

Cow.java


public class Cow {
	private String name = "";
	private String sex = "";
	public Cow(String name, String sex) {
		this.name = name;
		this.sex = sex;
	}
	public void tell() {
		System.out.println(this.name + "    " +this.sex);
	}
	
	public void gen_static_inner4_tell() {
		Inner_cow4 cow4 = new Inner_cow4("4吨","4.98metres");
		cow4.tell();
		System.out.println("\tin the outer_func : i can visit them : " + cow4.heavy +"  "+ cow4.height);
	}
	
	public void gen_static_inner5_tell() {
		Inner_cow5 cow5 = new Inner_cow5("5吨","5.98metres");
		cow5.tell();
		System.out.println("\tin the outer_func : i can visit them : " + cow5.heavy +"  "+ cow5.height);
	}
	
	public class Inner_cow{
		private String heavy = "";
		private String height = "";
		public Inner_cow(String heavy,String height) {
			this.heavy = heavy;
			this.height = height;
		}
		public void tell() {
			System.out.println("heavy : "+this.heavy + "    height: "+this.height);
//			Cow.this.tell();
		}
	}
	
	public static class Inner_cow2{
		private String heavy = "";
		private String height = "";
		public static String IsVisiable = "True";
		public Inner_cow2(String heavy,String height) {
			this.heavy = heavy;
			this.height = height;
		}
		public void tell() {
			System.out.println("heavy : "+this.heavy + "    height: "+this.height);
		}
	}
	
	public static class Inner_cow3{
		private static String heavy = "";
		private static String height = "";
		static public void tell() {
			System.out.println("heavy :    "+Inner_cow3.heavy);
		}
	}
	
	private static class Inner_cow4{
		private String heavy = "";
		private String height = "";
		
		public Inner_cow4(String heavy,String height) {
			this.heavy = heavy;
			this.height = height;
		}
		public void tell() {
			System.out.println("heavy : "+this.heavy + "    height: "+this.height);
		}
	}
	
	private class Inner_cow5{
		private String heavy = "";
		private String height = "";
		public Inner_cow5(String heavy,String height) {
			this.heavy = heavy;
			this.height = height;
		}
		public void tell() {
			System.out.println("heavy : "+this.heavy + "    height: "+this.height);
		}
	}
}


main.java


public class Main {
	public static void main(String[] args) {
		Cow cow0 = new Cow("ningning", "male");
		Cow.Inner_cow cow0_1 = cow0.new Inner_cow("1吨","1.98metres");
		cow0.tell();
		cow0_1.tell();
		
		Cow.Inner_cow2 cow0_2 = new Cow.Inner_cow2("2吨","2.98metres");
		cow0_2.tell();	
		System.out.println("\tcow_2: public isvisiable:  "+Cow.Inner_cow2.IsVisiable);
		
		cow0.gen_static_inner4_tell();
		cow0.gen_static_inner5_tell();
	}

}

									总结:
1.	static修饰的方法是类方法,绑定在类上,而实例方法是绑定在对象上的 
	static 不能用来修饰顶级类 ---->只有内部类才能用static来修饰
	那么 静态内部类  能实例化了吗? -->可以
	静态类 并不意味着就不能被实例化,
		不使用static修饰的内部类,其对象是依赖于外部类对象的,
			就是说只有在外部类对象存在的情况下,再利用外部类对象去new内部类对象这个操作才是合理的
			当内部类用public/protected修饰时:
				因此它的new 使用应该为:
					Outer xxx1 = new Outer(par1,par2,....);
					Outer.NoStaticInner xxx1_x = xxx1.new NoStaticInner(par1,par2,...)
			当内部类用private修饰时:
				这里是不能在main中创建的,因此,它的产生要由外部类对象来创建
		而静态内部类是为了让内部类对象不依赖于外部类对象,
			当静态内部类用public/protected修饰时:
				就是说在外部类对象未创建时,内部类对象可以被外部类new出来,注意:外部类不是外部类对象
				注意:
				因此它的new 使用在main时应该为:
					Outer.StaticInner xxx1_x =new Outer.StaticInner(par1,par2,...)
			当静态内部类用private修饰时:
				这里是不能在main中创建的,因此,它的产生要由外部类对象来创建,即便不依赖于外部类对象存在

2.("普通内部类" 在这里被定义为: 无static修饰的内部类)
	外部类与内部类的关联:
		1.外部类对象可以访问普通内部类的成员,调用普通内部类的方法,(二者是绑定的),反过来也一样.
			它们二者在同一个类下,根本就无关于权限的问题,即便是private,它们也是视若不见的
		2.外部类对象可以访问静态内部类成员,调用静态内部类方法
			然而,静态内部类未绑定于外部类对象,因此,静态类内部类只能访问外部非实例对象或是方法(即外部类方法,类对象)
		在使用上:
			Outer.this.xxx   内部类访问外部类对象成员
		总结:
			外部类拥有内部类的所有权,而内部类只有当绑定了外部类对象时(即为普通内部类),外部类对象与内部类对象二者完全公开
				
	那么内部类结构的用途在于什么? 
		我的理解是:
			1.不管对于静态内部类还是普通内部类而言,目的都在于实现整体类的分类
				静态内部可以跨越外部类实现分类 <--->普通内部类可以是外部类对象的分类
				二者使用的场景是不一样的:
					如果一开始就已知类的分类情况,可以直接使用静态内部类创建对象
					如果是创建完,经过一系列处理验证到类的分类情况,就应该使用普通内部类
			2.普通内部类还可以当做类的组合来使用,可以在外部类对象下,创建很多个普通内部类作为组件
				但是,像这种情况应该使用类的组合来解决,使用内部类并不是一个优解,并不推荐
					
		
				
				

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值