标签:style blog color 使用 strong ar div log sp
抽象类与接口很相似,但是思路不一样。接口是公开类的成员,而抽象类则是抽象类成员以要求子类继承并实现。
抽象类:抽象类是对共性的抽象
定义抽象类,抽象方法:
abstract class CashSuper { public abstract double acceptCash(double money); }
使用抽象类抽象方法:
class CashNormal : CashSuper { public override double acceptCash(double money) { return money; } }
接口:接口是对行为的抽象
示例:
interface MyInterface { string ID { set; get; } string Name { set; get; } void ShowInfo(); }
标签:style blog color 使用 strong ar div log sp
原文地址:http://www.cnblogs.com/adder/p/3944278.html