wingman007

OOP2016FullTimeInheritancePerson

Apr 19th, 2016
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.00 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 World3a3b
  8. {
  9.     // internal is the default access modifier
  10.     class Person // : Object
  11.     {
  12.         // private string _sfgsdjhfgname;
  13.         /*
  14.         public string Name { get; set; }
  15.         public int Age { get; set; }
  16.         */
  17.  
  18.         // private is the default access modifier
  19.         protected string name;
  20.         protected int age;
  21.         private double temp;
  22.         private static int counter = 0;
  23.         public const double PI = 3.14; // = 3.14
  24.         public readonly double only4Read = 2.71;
  25.         protected static string nationality = "Bulgarian";
  26.  
  27.         public static string Nationality // {get; set;}
  28.         {
  29.             get { return nationality; }
  30.             set { nationality = value; }
  31.         }
  32.  
  33.         public static int Counter
  34.         {
  35.             get { return counter; }
  36.             // private set { counter = value; }
  37.         }
  38.  
  39.         public string Name
  40.         {
  41.             get { return name; }
  42.             set { name = value; }
  43.         }
  44.  
  45.         public int Age
  46.         {
  47.             get { return age; }
  48.             set { age = value; }
  49.         }
  50.  
  51.         public double Balance
  52.         {
  53.             get { return 3.14 * age; }
  54.         }
  55.  
  56.         static Person()
  57.         {
  58.             nationality = "Albanian";
  59.         }
  60.  
  61.         public Person()
  62.             : this("Default", 0)
  63.         {
  64.             // this.name = "Default";
  65.             // this.age = 0;
  66.         }
  67.        
  68.         // workign horse
  69.         public Person(string name, int age)
  70.         {
  71.             this.name = name;
  72.             this.age = age;
  73.             counter++;
  74.             // Counter++;
  75.             only4Read = 5.4 * age;
  76.         }
  77.  
  78.         public Person(int age1, string name1)
  79.             :this(name1, age1)
  80.         {
  81.             // this.name = name1;
  82.             // this.age = age1;
  83.         }
  84.  
  85.         ~Person()
  86.         {
  87.             Console.WriteLine("I am a destructor {0}!", name);
  88.         }
  89.  
  90.         public virtual void IntroduceYourSelf()
  91.         {
  92.             Console.WriteLine("My name is {0}. I am {1} yers old. My balance is {2}. I am {3}", name, age, Balance, nationality);
  93.         }
  94.  
  95.         public override string ToString()
  96.         {
  97.             // return base.ToString();
  98.             return "My name is " + name + ". I am " + age + " yers old. My balance is " + Balance + ". I am " + nationality;
  99.         }
  100.  
  101.         public static double CalculateNationalIncome()
  102.         {
  103.             return 10000.0 * counter;
  104.         }
  105.  
  106.         /*
  107.         public string GetName()
  108.         {
  109.             return name;
  110.         }
  111.  
  112.         public void SetName(string name)
  113.         {
  114.             this.name = name;
  115.         }
  116.  
  117.         public int GetAge()
  118.         {
  119.             return age;
  120.         }
  121.  
  122.         public void SetAge(int age)
  123.         {
  124.             this.age = age;
  125.         }
  126.         */
  127.     }
  128. }
Add Comment
Please, Sign In to add comment