Нахождение ошибки в наследовании и приведении типов - C#

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

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

имеется рабочий код на с++, пыталась переделать его в С#, возникают ошибки,которые я не в состоянии сама исправить. Буду безумно признательна, если кто - то попробует мне помочь прилагаю код на с++ и мою попытку на С#
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Runtime.InteropServices;
  6. namespace ComplexNumbers
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. Complex a = new Complex(200,10);
  13. Complex b = new Complex(4, 5);
  14. Complex g = a - b;
  15. Console.WriteLine("a =" + "(" + a.re + "," + a.im + ")");
  16. Console.WriteLine("b =" + "(" + b.re + "," + b.im + ")");
  17. Console.WriteLine("-------------------------------------");
  18. Console.WriteLine("c="+"("+g.re.ToString() + "," + g.im.ToString()+")");
  19. Complex v = a + b;
  20. Console.WriteLine( "c=" +"(" + v.re.ToString() + "," + v.im.ToString() + ")");
  21. //
  22. Complex d = a * b;
  23. Console.WriteLine("c=" + "(" + d.re.ToString() + "," + d.im.ToString() + ")");
  24. Complex c = a / b;
  25. Console.WriteLine("c=" + "(" + c.re.ToString() + "," + c.im.ToString() + ")");
  26.  
  27. //1! ////**********полиморизм.один указатель на базовый класс указывает на объекты базового
  28. //и производного класса и вызывают виртуальный метод
  29.  
  30. Complex *pComplex;//указ на баз.клас и произ
  31. Vector x=new Vector(7, 8);
  32. Console.WriteLine("d =" + "(" + d.re + "," + d.im + ")");
  33. Console.WriteLine("x =" + "(" + x.re + "," + x.im + ")");
  34. pComplex = &x;
  35. Vector t=x*d;
  36. Console.WriteLine("c="+"("+t.re.ToString() + "," + t.im.ToString()+")");
  37. pComplex ->Show();//вызов вирт.метода
  38. Console.WriteLine("vector d ");
  39. pComplex = &d;
  40. pComplex ->Show();
  41. Console.WriteLine("vector b*x ");
  42. (b*x).Show();
  43. Console.WriteLine("vector e+x");
  44. (b+x).Show();
  45. ////
  46. Console.ReadKey(true);
  47. }
  48.  
  49. //класс комплекс
  50. public class Complex
  51. {
  52. private float _re;
  53. private float _im;
  54.  
  55. public float re
  56. {
  57. get { return _re; }
  58. private set { _re = value; }
  59. }
  60. public float im
  61. {
  62. get { return _im; }
  63. private set { _im = value; }
  64. }
  65. public Complex(float r, float m)
  66. {
  67. re = r;
  68. im = m;
  69. }
  70. public Complex() //конструктор без параметров
  71. {
  72. re = im = 0;
  73. }
  74. public static Complex operator +(Complex C1, Complex C2)
  75. {
  76. return new Complex(C1.re + C2.re, C1.im + C2.im);
  77. }
  78. public static Complex operator -(Complex C1, Complex C2)
  79. {
  80. return new Complex(C1.re - C2.re, C1.im - C2.im);
  81. }
  82. ///
  83. public static Complex operator *(Complex C1, Complex C2)
  84. {
  85. Complex C = new Complex();
  86. C.re = (C1.re * C2.re - C1.im * C2.im);
  87. C.im = (C2.re * C1.im + C1.re * C2.im);
  88. return C;
  89. }
  90. public static Complex operator /(Complex C1, Complex C2)
  91. {
  92. Complex C = new Complex();
  93. C.re = (C1.re * C2.re + C1.im * C2.im) / (C2.re * C2.re + C2.im * C2.im);
  94. C.im = (C2.re * C1.im - C2.im * C1.re) / (C2.re * C2.re + C2.im * C2.im);
  95. return C;
  96. }
  97.  
  98. float priv (float re)
  99. {
  100. return re;
  101. }
  102. float mnim (float im)
  103. {
  104. return im;
  105. }
  106. }
  107.  
  108. //класс вектор, наследование
  109.  
  110. public class Vector: Complex
  111. {
  112. private float _re;
  113. private float _im;
  114. public float re
  115. {
  116. get { return _re; }
  117. private set { _re = value; }
  118. }
  119. public float im
  120. {
  121. get { return _im; }
  122. private set { _im = value; }
  123. }
  124. public Vector(float r, float m)
  125. {
  126. re = r;
  127. im = m;
  128. }
  129. public Vector ()
  130. {
  131. re = im = 0;
  132. }
  133.  
  134. //2! //----приведение типов-----//
  135. public static Vector& operator *(Complex C1, Complex C2)
  136. {
  137. Vector C3 = new Vector();
  138. Complex C = new Complex();
  139. C.re=C3.priv(re);
  140. Complex.im=C3.mnin(im);
  141. return Vector(re,im);
  142. }
  143.  
  144. }
  145. }
  146. }
и вдруг понадобиться на с++ код
Листинг программы
  1. class Complex
  2. {protected:
  3. float Re, Im; //private
  4. public:
  5. Complex(float R,float M) //конструкторы с параметрами
  6. {
  7. //Re = Im = 0;
  8. Re=R;
  9. Im=M;
  10. }
  11. Complex(void) //конструктор без параметров
  12. {
  13. Re = Im = 0;
  14. }
  15. Complex& operator - (Complex&C2);
  16. Complex& operator *(Complex C2); //объявляем в классе
  17. Complex& operator /(Complex C2);
  18.  
  19. virtual void Show() //метод для отображения переменной на экране Complex *pComplex;
  20. {
  21. if (Im > 0)
  22. printf("(%.2f%;%.2f%)\n", Re, Im);
  23. else printf("(%.2f%;%.2f%)\n", Re, Im);
  24. }
  25. Complex operator + (Complex C2) //а здесь в классе Complex -оператор
  26. {
  27. Complex C;
  28. C.Re = Re + C2.Re;
  29. C.Im = Im + C2.Im;
  30. return C;
  31. }
  32. float priv (float Re)
  33. {
  34. return Re;
  35. };
  36. float mnim (float Im)
  37. {
  38. return Im;
  39. }
  40. };
  41. //закрывается класс
  42. class Vector:public Complex
  43. {
  44.  
  45. public:
  46. Vector (float re, float im)
  47. {
  48. Re=re; Im=im;
  49. }
  50. virtual void Show()
  51. {printf("(%.2f%;%.2f%)\n",Re, Im); }
  52. /*Vector& Complex& Complex:: operator *(Complex&C2)*/
  53.  
  54. Vector& operator *(float c)
  55. {
  56. Vector tmp(0,0);
  57. tmp.Re=Re*c;//для которого вызван метод перед *
  58. tmp.Im=Im*c;
  59. return tmp;
  60. }
  61. Vector& operator=(Complex c)
  62. {
  63. Re=c.priv(Re);
  64. Im=c.mnim(Im);
  65. return Vector(Re,Im);
  66. }
  67. };
  68. //------------------
  69.  
  70. Complex& Complex::operator - (Complex&C2)
  71. {
  72. Complex C;
  73. C.Re = Re - C2.Re;
  74. C.Im = Im - C2.Im;
  75. return C;
  76. }
  77. Complex& Complex::operator *(Complex C2) // Complex:: означает,что оператор относиться к классу
  78. {Complex C;
  79. C.Re=(Re*C2.Re-Im*C2.Im);
  80. C.Im=(C2.Re*Im+Re*C2.Im);
  81. return C;
  82. }
  83. Complex& Complex::operator /(Complex C2)
  84. {
  85. Complex C;
  86. C.Re=(Re*C2.Re+Im*C2.Im)/(C2.Re*C2.Re+C2.Im*C2.Im);
  87. C.Im=(C2.Re*Im-C2.Im*Re)/(C2.Re*C2.Re+C2.Im*C2.Im);
  88. return C;
  89. }
  90. int main()
  91. {
  92. Complex a(7,8);
  93.  
  94. printf("object a ");
  95. a.Show();
  96. //Complex C;
  97. //C.Show();
  98. Complex b(10,10);
  99. printf("object b ");
  100. b.Show();
  101. Complex c = a.operator +(b);
  102. printf("a+b ");
  103. c.Show();
  104. //c=a+b;//вызов в операторном вмде
  105. //c.Show();
  106. c = a.operator - (b); //
  107. c=a-b;
  108. printf("a-b ");
  109. c.Show();
  110. c=a*b;
  111. printf("a*b ");
  112. c.Show();
  113. c=a/b;
  114. printf("a/b ");
  115. c.Show();
  116. //-----------------
  117. //////////
  118.  
  119. Complex *pComplex;//указ на баз.клас и произ
  120. //Complex e(10, 10);
  121. Vector d(7, 8);
  122. printf("vector b ");
  123. pComplex = &b;
  124. pComplex ->Show();//вызов вирт.метода
  125. printf("vector d ");
  126. pComplex = &d;
  127. pComplex ->Show();
  128. //////////
  129. printf("vector b*d ");
  130. (b*d).Show();
  131. printf("vector e+d");
  132. (b+d).Show();
  133. ////
  134. _getch();
  135. return 0;
  136. };

Решение задачи: «Нахождение ошибки в наследовании и приведении типов»

textual
Листинг программы
  1. public override string ToString()
  2. {
  3.     return string.Format("x={0}; y={1}", X, Y);
  4. }

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


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

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

7   голосов , оценка 4 из 5

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

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

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