gpt4 book ai didi

c# - 在具有相同 ref 变量的连续调用方法上实现 Ref 功能

转载 作者:行者123 更新时间:2023-11-30 12:19:57 26 4
gpt4 key购买 nike

我以下列方式使用 ref。那么当在第 5 种方法中创建一个新对象时,是否会一直访问 main 方法中的原始 emp 并在那里创建一个新对象?

如果是,有没有一种方法可以实现相同的功能而无需多次迭代,即它应该在第 5 种方法本身中创建一个新对象,并且更改也应该反射(reflect)在主要方法的 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 methodand 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. 谁把容器交给吉姆
  3. 最终传给了乔。

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

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

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


在这一点上,现在您需要做一些研究并阅读文档,请教您的老师或 friend ,做您需要做的任何事情。然而,问这类问题是多余的,当你编写一个程序时,你可能已经花了 15 年的时间来问一些你可以通过阅读弄清楚的基本问题。

请从这里开始:

ref (C# Reference)

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

关于c# - 在具有相同 ref 变量的连续调用方法上实现 Ref 功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54229273/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com