摘要:
以下内容来自MSDNabstract 修饰符可以和类、方法、属性、索引器及事件一起使用。在类声明中使用 abstract 修饰符以指示某个类只能是其他类的基类。标记为抽象或包含在抽象类中的成员必须通过从抽象类派生的类来实现。在此例中,类 Square 必须提供 Area 的实现,因为它派生自 ShapesClass:abstract class ShapesClass{ abstract public int Area();}class Square : ShapesClass{ int x, y; public override int Area() { return x * y; }}备注 阅读全文
posted @ 2011-07-14 22:51 ☆Keep★Moving☆ 阅读(1309) 评论(0) 推荐(0) 编辑