UML圖示與代碼對照


朋友炒股兩個月賺了10萬,我幫他推廣一下公眾號,把錢用來投資總比放銀行連通貨膨脹都跑不過里強硬核離職,在家炒股 ,這是他每天的日志,有些經驗是花錢也買不到的。

一、類繼承

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     }

 八、版權

  轉載請注明出處:http://www.cnblogs.com/iamlilinfeng


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM