使用相同 ref 变量连续调用方法的 ref 功能实现

ref functionality implementation on continuously called methods with the same ref variable

我以下列方式使用了 ref。因此,当在第 5 种方法中创建一个新对象时,是否会一直访问 main 方法中的原始 emp 并在那里创建一个新对象?如果是的话,有没有一种方法可以在没有那么多迭代的情况下实现相同的功能,即它应该在第 5 种方法本身中创建一个新对象,并且更改也应该反映在主要方法的 emp 中?

public static void Main(string[] args)
        {
            Employee emp=new Employee();
            emp.id=10;
            Program p=new Program();
            p.Method1(ref emp);
            Console.WriteLine(emp.id);
            Console.ReadKey();
        }
public void Method1(ref Employee emp)
         {
             Method2(ref emp);
         }
         public void Method2(ref Employee emp)
         {
             Method3(ref emp);
         }
         public void Method3(ref Employee emp)
         {
             Method4(ref emp);
         }
         public void Method4(ref Employee emp)
         {
             Method5(ref emp);
         }
         public void Method5(ref Employee emp)
         {
             emp=new Employee();
             emp.id=20;
         }

does access goes all the way to the original emp in the main method and create a new object there

它不会在那里创建对象,但是它会覆盖对该对象的引用,它会在创建对象的地方创建对象

if yes is there a way that i implement the same functionality without so many iterations

什么迭代?毕竟你做了所有的路过

it should create a new object in the 5th method itself and the change should be reflected in the main methods' emp too?

它已经这样做了,除了它不改变原来的员工,它覆盖了它的位置。

Console.WriteLine(emp.id);
// writes 20

想象一下,您做了一个馅饼并将其放入容器中。

  1. 您将容器传递给 Bob
  2. 谁将容器传递给 Jim
  3. 最终传给了乔。

然后 Joe 决定自己制作馅饼并将其放入容器中,您原来的馅饼消失在以太中。

那时没有原始对象,容器现在包含新饼

当您通过引用传递对象时,您传递的是指向存储在内存中的数据的引用,如果有人选择覆盖该引用,那么就是它的引用,每个拥有该引用的人都会得到新的被覆盖的引用。


现在你需要做一些研究并阅读文档,问问你的老师你的朋友,做你需要做的事。然而,问这类问题是多余的,当你写一个程序时,你可能已经花了 15 年时间问一些基本的问题,这些问题你可以通过阅读

请从这里开始

ref (C# Reference)

When used in a method's parameter list, the ref keyword indicates that an argument is passed by reference, not by value. The effect of passing by reference is that any change to the argument in the called method is reflected in the calling method. For example, if the caller passes a local variable expression or an array element access expression, and the called method replaces the object to which the ref parameter refers, then the caller’s local variable or the array element now refers to the new object when the method returns.