Заменитель объекта класса - C#

Узнай цену своей работы

Формулировка задачи:

Привет! Подскажите пожалуйста почему так работает? Рабочий вариант:
Листинг программы
  1. Class Unit
  2. {
  3. public int health;
  4. public int damage;
  5. public void Hit(Unit Target)
  6. {
  7. Target.health = Target.health - damage;
  8. Console.WriteLine();
  9. Console.WriteLine("{0}", Target.health);
  10. }
  11. }
Нерабочий вариант:
Листинг программы
  1. Class Unit
  2. {
  3. public int health;
  4. public int damage;
  5. public void Hit()
  6. {
  7. health = health - damage;
  8. Console.WriteLine();
  9. Console.WriteLine("{0}", health);
  10. }
  11. }
Основной метод:
Листинг программы
  1. static void Main()
  2. {
  3. Unit hero = new Unit();
  4. Unit enemy = new Unit();
  5. hero.health = 100;
  6. hero.damage = 10;
  7. enemy.health = 50;
  8. enemy.damage = 5;
  9. Console.WriteLine("{0}, {1}", hero.health, hero.damage);
  10. Console.WriteLine();
  11. Console.WriteLine("{0}, {1}", enemy.health, enemy.damage);
  12. hero.Hit(enemy);
  13. Console.ReadKey();
  14. }

Решение задачи: «Заменитель объекта класса»

textual
Листинг программы
  1.    
  2. class Unit
  3.     {
  4.         private int health;
  5.         private int damage;
  6.         public int Health
  7.         {
  8.             set
  9.             {
  10.                 health = value;
  11.             }
  12.             get
  13.             {
  14.                 return health;
  15.             }
  16.         }
  17.         public int Damage
  18.         {
  19.             set
  20.             {
  21.                 damage = value;
  22.             }
  23.             get
  24.             {
  25.                 return damage;
  26.             }
  27.         }
  28.  
  29.         public void Hit(int getDamage)
  30.         {
  31.             health -= getDamage;
  32.             Console.WriteLine("\n{0}", health);
  33.         }
  34.         public Unit(int health, int damage)
  35.         {
  36.             this.health = health;
  37.             this.damage = damage;
  38.         }
  39.     }
  40.     class Program
  41.     {
  42.         static void Main(string[] args)
  43.         {
  44.             Unit hero = new Unit(100, 10);
  45.             Unit enemy = new Unit(50, 5);
  46.  
  47.             Console.WriteLine("Hero (health-{0}), with {1} damage", hero.Health, hero.Damage);
  48.             Console.WriteLine("\nEnemy (health-{0}), with {1} damage", enemy.Health, enemy.Damage);
  49.  
  50.             hero.Hit(enemy.Damage);
  51.  
  52.             Console.ReadKey();
  53.         }
  54.     }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

12   голосов , оценка 4.333 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут