csaki

Object composition / Inheritance

Mar 2nd, 2014
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.67 KB | None | 0 0
  1. // ÖRÖKLÉS (Inheritance):
  2.  
  3. class A {
  4.     public void m1()
  5.     {
  6.        Console.Write("hello");
  7.     }
  8. }
  9.  
  10. class B : A
  11. {
  12.     public void m2()
  13.     {
  14.         m1();
  15.     }
  16. }
  17.  
  18. class Program
  19. {
  20.   static void Main(string[] a)
  21.   {
  22.         B b = new B();
  23.         b.m2();
  24.     }
  25. }
  26.  
  27.  
  28. ////////////////////////////////////////////
  29.  
  30. // OBJEKTUMÖSSZETÉTEL (Object composition):
  31.  
  32. class A
  33. {
  34.     public void m1()
  35.     {
  36.        Console.Write("hello");
  37.     }
  38. }
  39.  
  40. class B
  41. {
  42.     A a = new A();
  43.     public void m2()
  44.      {
  45.         a.m1();
  46.     }
  47. }
  48.  
  49. class Program
  50. {
  51.   static void Main(string[] a)
  52.     {
  53.         B b = new B();
  54.         b.m2();
  55.     }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment