Advertisement
wingman007

C#_OOP_2b_Human.cs

Mar 23rd, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.46 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace OOP9
  7. {
  8.     class Human
  9.     {
  10.         string name;
  11.         int age;
  12.         Brain brain;
  13.  
  14.         public const string PLANET = "Earth";
  15.         public static readonly string humanType = "HomoSapiens";
  16.  
  17.         // public const int Large = 1400;
  18.         // public const int Normal = 1350;
  19.         // public const int Small = 1200;
  20.  
  21.         public enum BrainSize { Large = 1400, Normal = 1350, Small = 1300}
  22.  
  23.         public Human()
  24.             : this("Default", 0, BrainSize.Small)
  25.         { }
  26.  
  27.         public Human(string name, int age, BrainSize brainSize)
  28.         {
  29.             this.name = name;
  30.             this.age = age;
  31.             this.brain = new Brain((int)brainSize);
  32.         }
  33.  
  34.         public void Speak()
  35.         {
  36.             Console.WriteLine("I am {0}. I am {1} years old. My brain tells me {2}", name, age, brain.Think());
  37.         }
  38.  
  39.         public class Brain
  40.         {
  41.             int size;
  42.  
  43.             public Brain(int size)
  44.             {
  45.                 this.size = size;
  46.             }
  47.  
  48.             public string Think()
  49.             {
  50.                 if (size >= (int)BrainSize.Small) // access to all static members
  51.                 {
  52.                     return "smart";
  53.                 }
  54.                 else
  55.                 {
  56.                     return "dumm";
  57.                 }
  58.             }
  59.         }
  60.  
  61.     }
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement