gpt4 book ai didi

c# - 无法使用 `new` 关键字从函数修改对象

转载 作者:可可西里 更新时间:2023-11-01 11:15:53 25 4
gpt4 key购买 nike

<分区>

我正在尝试执行以下代码,但不明白为什么行 person.Name = "anton"; 不起作用?该程序的输出是“colin”。

class Person
{
public string Name;
}

class MainClass
{
public static void MyMethod(Person person)
{
person.Name = "colin";
person = new Person();
person.Name = "anton";
}

public static void Main()
{
Person person = new Person();
person.Name = "felix";
MyMethod(person);
Console.WriteLine(person.Name);
}
}

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