В чём смысл использования ключевого слова ref? - C#

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

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

Вопрос слегка может туповат. Но всё же. какой смысл от ref? если у нас и так все по ссылке передается т.е Все ровно что я просто передам переменную
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ConsoleApplication9
  7. {
  8. class Program
  9. {
  10. static void kk( List<int> k)
  11. {
  12. List<int> d = k;
  13. d.Add(2);
  14. }
  15. static void Main(string[] args)
  16. {
  17. List<int> ll = new List<int>();
  18. ll.Add(1);
  19. kk( ll);
  20. foreach(int k in ll)
  21. {
  22. Console.WriteLine(k);
  23. }
  24. Console.ReadLine();
  25. }
  26. }
  27. }
Что и по сылке выйдет тоже самое
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ConsoleApplication9
  7. {
  8. class Program
  9. {
  10. static void kk(ref List<int> k)
  11. {
  12. List<int> d = k;
  13. d.Add(2);
  14. }
  15. static void Main(string[] args)
  16. {
  17. List<int> ll = new List<int>();
  18. ll.Add(1);
  19. kk(ref ll);
  20. foreach(int k in ll)
  21. {
  22. Console.WriteLine(k);
  23. }
  24. Console.ReadLine();
  25. }
  26. }
  27. }

Решение задачи: «В чём смысл использования ключевого слова ref?»

textual
Листинг программы
  1. class RefExample2
  2. {
  3.     static void ChangeByReference(ref Product itemRef)
  4.     {
  5.         // The following line changes the address that is stored in  
  6.         // parameter itemRef. Because itemRef is a ref parameter, the
  7.         // address that is stored in variable item in Main also is changed.
  8.         itemRef = new Product("Stapler", 99999);
  9.  
  10.         // You can change the value of one of the properties of
  11.         // itemRef. The change happens to item in Main as well.
  12.         itemRef.ItemID = 12345;
  13.     }
  14.  
  15.     static void Main()
  16.     {
  17.         // Declare an instance of Product and display its initial values.
  18.         Product item = new Product("Fasteners", 54321);
  19.         System.Console.WriteLine("Original values in Main.  Name: {0}, ID: {1}\n",
  20.             item.ItemName, item.ItemID);
  21.  
  22.         // Send item to ChangeByReference as a ref argument.
  23.         ChangeByReference(ref item);
  24.         System.Console.WriteLine("Back in Main.  Name: {0}, ID: {1}\n",
  25.             item.ItemName, item.ItemID);
  26.     }
  27. }
  28.  
  29. class Product
  30. {
  31.     public Product(string name, int newID)
  32.     {
  33.         ItemName = name;
  34.         ItemID = newID;
  35.     }
  36.  
  37.     public string ItemName { get; set; }
  38.     public int ItemID { get; set; }
  39. }
  40.  
  41. // Output:
  42. //Original values in Main.  Name: Fasteners, ID: 54321
  43.  
  44. //Back in Main.  Name: Stapler, ID: 12345

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


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

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

8   голосов , оценка 3.875 из 5

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

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

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