Advertisement
wingman007

OOPPrinciplesStatic1bProgram

Mar 19th, 2016
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.77 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace World1b
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.WriteLine(Person.PI);
  14.            
  15.             // int counter = 0;
  16.  
  17.             // counter++;
  18.             Person stoyan = new Person(); // "Stoyan", 52
  19.             // 1. fields
  20.             // stoyan.name = "Stoyan";
  21.             // stoyan.age = 52;
  22.             // Console.WriteLine("My name is {0}, I am {1} years old!", stoyan.name, stoyan.age);
  23.  
  24.             // 2. methods getter and setter
  25.             // stoyan.SetName("Stoyan");
  26.             // stoyan.SetAge(52);
  27.             // Console.WriteLine("My name is {0}, I am {1} years old!", stoyan.GetName(), stoyan.GetAge());
  28.  
  29.             // 3. properties
  30.             // stoyan.Name = "Stoyan";
  31.             // stoyan.Age = 52;
  32.             // Console.WriteLine("My name is {0}, I am {1} years old!", stoyan.Name, stoyan.Age);
  33.  
  34.             stoyan.IntroduceYourSelf();
  35.  
  36.             // counter++;
  37.             Person vasko = new Person("Vasko", 18, 123.23, "Stoyan", "Ivan");
  38.             // 1. fiealds
  39.             // vasko.name = "Vasko";
  40.             // vasko.age = 18;
  41.             // Console.WriteLine("My name is {0}, I am {1} years old!", vasko.name, vasko.age);
  42.             // Console.WriteLine("My name is {0}, I am {1} years old!", vasko.Name, vasko.Age);
  43.             vasko.IntroduceYourSelf();
  44.             Console.WriteLine("Friend 0 = {0}", vasko[0]);
  45.  
  46.             Elevator elevator1 = new Elevator(17);
  47.             elevator1.GoUp(10);
  48.             Console.WriteLine("The elevator1 is on floor {0}", elevator1.GetCurrentFloor());
  49.  
  50.             DoSomethingElse();
  51.  
  52.             Console.WriteLine("The population of my little kingdom is {0}", Person.Counter);
  53.  
  54.             Person.Nationality = "German";
  55.             stoyan.IntroduceYourSelf();
  56.             vasko.IntroduceYourSelf();
  57.             Console.WriteLine("OnlyRead is {0}", vasko.onlyRead);
  58.             Console.WriteLine("OnlyRead is {0}", stoyan.onlyRead);
  59.             // vasko.onlyRead = 5.6;
  60.  
  61.             Console.WriteLine("National Income {0}", Person.GetNationalIncome());
  62.  
  63.             Student student1 = new Student("Kircho", 26, "fskdf6367");
  64.             // Console.WriteLine("I am a student!!! ");
  65.             student1.IntroduceYourSelf();
  66.  
  67.             Athlete athlete1 = new Athlete("Krisi", 27, "Box");
  68.             athlete1.IntroduceYourSelf();
  69.  
  70.             Executor exec1 = new Executor(athlete1);
  71.             exec1.MakeItSpeak();
  72.         }
  73.  
  74.         static void DoSomethingElse()
  75.         {
  76.             // int counter = 0;
  77.             // counter++;
  78.             Person person1 = new Person();
  79.         }
  80.     }
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement