扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:孙雯 来源:aspcn 2007年11月14日
关键字:
000: // Properties\abstractshape.cs 001: using System; 002: 003: public abstract class Shape 004: { 005: private string myId; 006: 007: public Shape(string s) 008: { 009: Id = s; // 这句调用了Id属性的set构建器 010: } 011: 012: public string Id 013: { 014: get 015: { 016: return myId; 017: } 018: 019: set 020: { 021: myId = value; 022: } 023: } 024: 025: public abstract double Area 026: { 027: get; 028: } 029: 030: public override string ToString() 031: { 032: return Id + " Area = " + double.Format(Area, "F"); 033: } 034: } |
000: // Properties\shapes.cs 001: public class Square : Shape 002: { 003: private int mySide; 004: 005: public Square(int side, string id) : base(id) 006: { 007: mySide = side; 008: } 009: 010: public override double Area 011: { 012: get 013: { 014: return mySide * mySide; 015: } 016: } 017: } 018: 019: public class Circle : Shape 020: { 021: private int myRadius; 022: 023: public Circle(int radius, string id) : base(id) 024: { 025: myRadius = radius; 026: } 027: 028: public override double Area 029: { 030: get 031: { 032: return myRadius * myRadius * System.Math.PI; 033: } 034: } 035: } 036: 037: public class Rectangle : Shape 038: { 039: private int myWidth; 040: private int myHeight; 041: 042: public Rectangle(int width, int height, string id) : base(id) 043: { 044: myWidth = width; 045: myHeight = height; 046: } 047: 048: public override double Area 049: { 050: get 051: { 052: return myWidth * myHeight; 053: } 054: } 055: } |
000: // Properties\shapetest.cs 001: public class TestClass 002: { 003: public static void Main() 004: { 005: Shape[] shapes = 006: { 007: new Square(5, "Square #1"), 008: new Circle(3, "Circle #1"), 009: new Rectangle( 4, 5, "Rectangle #1") 010: }; 011: 012: System.Console.WriteLine("Shapes Collection"); 013: foreach(Shape s in shapes) 014: { 015: System.Console.WriteLine(s); 016: } 017: 018: } 019: } |
Shapes Collection Square #1 Area = 25.00 Circle #1 Area = 28.27 Rectangle #1 Area = 20.00 |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者