Как создать объект делегата и вызвать его? - C#

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

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

Добрый день! Написал код, нужно: создать объект делегата и вызвать его
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace WindowsFormsApplication66
  11. {
  12. public partial class Form1 : Form
  13. {
  14. public Form1()
  15. {
  16. InitializeComponent();
  17. }
  18.  
  19. delegate int A(int a);
  20. delegate string B(string b); // создал делегаты
  21.  
  22. public static string nat(string n)
  23. {
  24. return n;
  25. }
  26. public static int age(int a)
  27. {
  28. return a;
  29. }
  30. public static string s(string sud)
  31. {
  32. return sud;
  33. }
  34. public static string obraz(string obr)
  35. {
  36. return obr;
  37. }
  38. public static int staj(int s)
  39. {
  40. return s; // Организуем методы
  41. }
  42.  
  43. public void meth()
  44. {
  45. int ball = 0;
  46. B op1 = new B(nat); // Сконструируем делегат
  47. string names = op1(textBox1.Text);
  48. if (textBox1.Text == "русский") // национальность
  49. {
  50. ball += 1;
  51. }
  52. else
  53. { ball = 0; }
  54.  
  55. string sud = op1(textBox2.Text);
  56. if (textBox2.Text == "да")
  57. {
  58. ball = 0;
  59. }
  60. else
  61. { ball += 1; }
  62.  
  63. op1 = new B(obraz); // Сконструируем делегат
  64. string ob = op1(textBox5.Text);
  65. if (textBox5.Text == "высшее")
  66. {
  67. ball += 1;
  68. }
  69. if (textBox5.Text == "среднее")
  70. {
  71. ball += 1;
  72. }
  73. if (textBox5.Text == "нет")
  74. {
  75. ball += 0;
  76. }
  77.  
  78. A op2 = new A(age); // Сконструируем делегат
  79. int op = op2(Convert.ToInt16(textBox3.Text));
  80. if (Convert.ToInt16(textBox3.Text) < 25) // Возраст
  81. {
  82. ball = 0;
  83. }
  84. else { ball += 1; }
  85.  
  86. A op4 = new A(staj); // Сконструируем делегат
  87. op2(Convert.ToInt16(textBox6.Text)); // Стаж
  88. if (Convert.ToInt16(textBox6.Text) < 4)
  89. {
  90. ball = 0;
  91. }
  92. else { ball += 1; }
  93.  
  94. if (ball >3 )
  95. {
  96. textBox4.Text = "Вы приняты на работу количество ваших баллов ";
  97. }
  98. else { textBox4.Text = "Вы не приняты на работу количество ваших баллов "; }
  99.  
  100. }
  101.  
  102. private void button1_Click(object sender, EventArgs e)
  103. {
  104. meth();
  105. }
  106. }
  107. }

Решение задачи: «Как создать объект делегата и вызвать его?»

textual
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace DelegateExample
  7. {
  8.     // Declaration
  9.     public delegate void myDelegate(string s);
  10.  
  11.     class myClass
  12.     {
  13.         public void myMethod1(string s)
  14.         {
  15.             Console.WriteLine(s + " from instance method1\n");
  16.         }
  17.  
  18.         public static void myMethod2(string s)
  19.         {
  20.             Console.WriteLine(s + " from static method2\n");
  21.         }
  22.     }
  23.  
  24.     class Program
  25.     {
  26.         static void Main(string[] args)
  27.         {
  28.             //Example illustrating different ways to work with
  29.             //delegate objects
  30.  
  31.             //(1) Working with instance methods.
  32.  
  33.             //Instantiate a null delegate object called delObj1.
  34.             myDelegate delObj1 = null; //Delegate Instantiation
  35.  
  36.             //Instantiate an object called myObj from myClass
  37.             //class.
  38.             myClass myObj = new myClass();
  39.  
  40.             //Assign instance method myMethod1 to delegate
  41.             //object delObj1.
  42.             delObj1 = myObj.myMethod1;
  43.  
  44.             //Use the delegate object delObj1 to pass some data
  45.             //to myMethod1.
  46.             delObj1("Hello");  //Invocation
  47.  
  48.             //(2) Working with static methods.
  49.  
  50.             //Instantiate a null delegate object called delObj2.
  51.             myDelegate delObj2 = null; //Delegate Instantiation
  52.  
  53.             //Assign static method myMethod2 to delegate object
  54.             //delObj2. Note that because myMethod2 is a static  
  55.             //method, there is no need to first instantiate an  
  56.             //object from myClass in order to then assign
  57.             //myMethod2 to delegage object delObj2.
  58.             delObj2 = myClass.myMethod2;
  59.  
  60.             //Use the delegate object delObj2 to pass some
  61.             //data to myMethod2
  62.             delObj2("Greetings");  //Invocation              
  63.  
  64.             //(3) Working with instance and static methods to  
  65.             //build an invocation list
  66.  
  67.             //Create two delegate objects and directly assign
  68.             //them to their respective instance and static methods.
  69.  
  70.             //Delegate instantiation
  71.             myDelegate delObj3 = new myDelegate(myObj.myMethod1);
  72.             //and invocation
  73.             delObj3("Building invocation list, element 1");
  74.  
  75.             //Delegate instantiation
  76.             myDelegate delObj4 = new myDelegate(myClass.myMethod2);
  77.             //and invocation
  78.             delObj4("Building invocation list, element 2");
  79.  
  80.             //Build an invocation list from these two
  81.             //delegate objects
  82.             myDelegate delObjTotal = delObj3 + delObj4;
  83.  
  84.             //Process the invocation list with some data
  85.             delObjTotal("Processing entire invocation list.");
  86.  
  87.             //Remove a method from invocation list
  88.             delObjTotal -= delObj4;
  89.  
  90.             //Process remaining methods in invocation list
  91.             delObjTotal("Last message is");
  92.  
  93.             //Alternate way to build invocation list
  94.             myDelegate delObj5 = null;
  95.             delObj5 += new myDelegate(myObj.myMethod1);
  96.             delObj5 += new myDelegate(myClass.myMethod2);
  97.  
  98.             //Process total invocation list with some data
  99.             delObj5("bye...");
  100.  
  101.             //Remove a method from invocation list
  102.             delObj5 -= myClass.myMethod2;
  103.  
  104.             //Process remaining methods in invocation list
  105.             delObj5("Final message is");
  106.  
  107.             //Pause until user hits enter key
  108.             Console.ReadLine();
  109.         }
  110.     }
  111. }

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


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

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

14   голосов , оценка 3.714 из 5

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

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

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