UML图示与代码对照
本文转载:http://www.cnblogs.com/iamlilinfeng/archive/2012/08/29/2662740.html
一、类继承
1 public class Father
2 {
3 }
4 public class Child : Father
5 {
6 }
二、接口继承
1 public interface IBreath { }
2 public interface IRun { }
3
4 public class Animal : IBreath, IRun
5 { }
三、实现
1 public interface ISpeak
2 {
3 void Speak();
4 }
5 public class Person : ISpeak
6 {
7 void ISpeak.Speak()
8 {
9 throw new NotImplementedException();
10 }
11 }
四、关联
1 public class Weather { }
2 public class People
3 {
4 private Weather weather;
5 }
五、依赖
1 public class Water { }
2 public class Animal
3 {
4 public Animal(Water water) { }
5 }
六、聚合
1 public class Car { }
2 public class Motorcade
3 {
4 private Car[] carList;
5 }
七、组合
1 public class Wheel { }
2 public class Car
3 {
4 private Wheel wheel;
5 public Car()
6 {
7 wheel = new Wheel();
8 }
9 }
八、版权
作者:阿笨
【官方QQ一群:跟着阿笨一起玩NET(已满)】:422315558
【官方QQ二群:跟着阿笨一起玩C#(已满)】:574187616
【官方QQ三群:跟着阿笨一起玩ASP.NET(已满)】:967920586
【官方QQ四群:Asp.Net Core跨平台技术开发(可加入)】:829227829
【官方QQ五群:.NET Core跨平台开发技术(可加入)】:647639415
【网易云课堂】:https://study.163.com/provider/2544628/index.htm?share=2&shareId=2544628
【腾讯课堂】:https://abennet.ke.qq.com
【51CTO学院】:https://edu.51cto.com/sd/66c64
【微信公众号】:微信搜索:跟着阿笨一起玩NET