.NET 4.x Ошибка при наследовании с использованием закрытых переменных экземпляров - C#

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

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

При изучении наследования с использованием закрытых переменных экземпляров появилась ошибка, относящаяся к строке в файле BasePlusCommissionEmployeeTest.cs:
Листинг программы
  1. Console.WriteLine("\n{0}:\n\n{l}",
  2. "Updated employee information obtained bу ToString",
  3. employee);
Visual Studio выдает: FormatException was unhandled An unhandled exception of type 'System.FormatException' occurred in mscorlib.dll Код программы:
Листинг программы
  1. //BasePlusCommissionEmployee.cs
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace UseVarExs
  8. {
  9. public class BasePlusCommissionEmployee : CommissionEmployee
  10. {
  11. private decimal baseSalary;
  12. public BasePlusCommissionEmployee(string first, string last,
  13. string ssn, decimal sales, decimal rate, decimal salary)
  14. :base(first, last, ssn,sales,rate)
  15. {
  16. baseSalary = salary;
  17. }
  18. public decimal BaseSalary
  19. {
  20. get
  21. {
  22. return baseSalary;
  23. }
  24. set
  25. {
  26. if (value >= 0)
  27. baseSalary = value;
  28. else
  29. throw new ArgumentOutOfRangeException(
  30. "BaseSalary", value, "baseSalary must be >= 0");
  31. }
  32. }
  33. public override decimal Earnings()
  34. {
  35. return BaseSalary + base.Earnings();
  36. }
  37. public override string ToString()
  38. {
  39. return string.Format("base-sales {0}\nbase salary: {1:C}",
  40. base.ToString(), BaseSalary);
  41. }
  42. }
  43. }
Листинг программы
  1. // CommissionEmployee.cs
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace UseVarExs
  8. {
  9. public class CommissionEmployee
  10. {
  11. private string firstName;
  12. private string lastName;
  13. private string socialSecurityNumber;
  14. private decimal grossSales;
  15. private decimal commissionRate;
  16. public CommissionEmployee(string first, string last, string ssn,
  17. decimal sales, decimal rate)
  18. {
  19. firstName = first;
  20. lastName = last;
  21. socialSecurityNumber = ssn;
  22. GrossSales = sales;
  23. CommissionRate = rate;
  24. }
  25. public string FirstName
  26. {
  27. get
  28. {
  29. return firstName;
  30. }
  31. }
  32. public string LastName
  33. {
  34. get
  35. {
  36. return lastName;
  37. }
  38. }
  39. public string SocialSecurityNumber
  40. {
  41. get
  42. {
  43. return socialSecurityNumber;
  44. }
  45. }
  46. public decimal GrossSales
  47. {
  48. get
  49. {
  50. return grossSales;
  51. }
  52. set
  53. {
  54. if (value >= 0)
  55. grossSales = value;
  56. else
  57. throw new ArgumentOutOfRangeException(
  58. "GrossSales", value, "Grosssales must be >=0");
  59. }
  60. }
  61. public decimal CommissionRate
  62. {
  63. get
  64. {
  65. return commissionRate;
  66. }
  67. set
  68. {
  69. if (value > 0 && value < 1)
  70. commissionRate = value;
  71. else
  72. throw new ArgumentOutOfRangeException(
  73. "CommissionRate", value, "CommissionRate must be > 0 & <1");
  74. }
  75. }
  76. public virtual decimal Earnings()
  77. {
  78. return CommissionRate * GrossSales;
  79. }
  80. public override string ToString()
  81. {
  82. return string.Format(
  83. "{0}: {1} {2}\n{3}: {4}\n{5}: {6:C}\n{7}: {8:F2}",
  84. "commission employee", FirstName, LastName,
  85. "social security number", SocialSecurityNumber,
  86. "gross sales", GrossSales, "commission rate", CommissionRate);
  87. }
  88. }
  89. }
Листинг программы
  1. //BasePlusCommissionEmployeeTest.cs
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace UseVarExs
  8. {
  9. public class BasePlusCommissionEmployeeTest
  10. {
  11. static void Main(string[] args)
  12. {
  13. BasePlusCommissionEmployee employee =
  14. new BasePlusCommissionEmployee("Bob", "Lewis", "333-33-3333",
  15. 5000.00M, .04M, 300.00M);
  16. Console.WriteLine(
  17. "Employee information obtained Ьу properties and methods: \n");
  18. Console.WriteLine("First name is {0}",
  19. employee.FirstName);
  20. Console.WriteLine("Last name is {0}",
  21. employee.LastName);
  22. Console.WriteLine("Social security number is {0}",
  23. employee.SocialSecurityNumber);
  24. Console.WriteLine("Gross sales are {0:С}",
  25. employee.GrossSales);
  26. Console.WriteLine("Commission rate is {0:F2}",
  27. employee.CommissionRate);
  28. Console.WriteLine("Earnings are {0:С}",
  29. employee.Earnings());
  30. Console.WriteLine("Base salary is {0:С}",
  31. employee.BaseSalary);
  32. employee.BaseSalary = 1000.00M;
  33. Console.WriteLine("\n{0}:\n\n{l}",
  34. "Updated employee information obtained Ьу ToString",
  35. employee);
  36. Console.WriteLine("earnings: {0:С}",
  37. employee.Earnings());
  38. Console.ReadKey();
  39. }
  40. }
  41. }
В чем может быть ошибка?

Решение задачи: «.NET 4.x Ошибка при наследовании с использованием закрытых переменных экземпляров»

textual
Листинг программы
  1. Console.OutputEncoding = System.Text.Encoding.UTF8;

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


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

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

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

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

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

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