Day19-内部类

总结:

接口:

               先有接口,再调用,再实现

内部类:

               概念:在类的内部再定义一个完整的类。

               可为外部类提供必要的内部功能组件。

成员内部类:

               重名时,会优先访问内部类属性。

               外部类的一个实例部分,创建内部类对象时,必须依赖外部对象。

               Outer out=new Outer();

               Outer.Inner in=out.new Inner();

 

习题:

Comparable   student

package comparable;

public class Student implements Comparable{
	String name;
	int age;

	public Student(String name, int age) {
		super();
		this.name = name;
		this.age = age;
	}

	@Override
	public int compareTo(Student o) {
		if(o.age>this.age){
			return 1;
		}if(o.age
package comparable;

import java.util.Arrays;

public class TestStudentsAge {

	public static void main(String[] args) {

		Student[] ss=new Student[]{
				new Student("Tom",25),
				new Student("Mic",22),
				new Student("Anny",26),
				new Student("Jan",23)};
		
		Arrays.sort(ss);
		
		for(int i=0;i

 

你可能感兴趣的:(1000phone学习记录,java)