当一个抽象类太抽象了的时候才演变为接口
1 interface IFly 2 { 3 int height { get;} 4 delegate int Accelerating(int a); 5 void IFly(); 6 float this[int index] { get; set; } 7 }