gpt4 book ai didi

C# 奇数列表行为

转载 作者:行者123 更新时间:2023-11-30 13:39:14 25 4
gpt4 key购买 nike

这可能是一个有点菜鸟的问题,但我似乎根本找不到有关此行为的任何信息。

代码如下:

class Cars
{
public int year = 0;
public string make = " ";
public string model = " ";

public Cars()
{
}

public Cars(int tYear, string tMake, string tModel)
{
year = tYear;
make = tMake;
model = tModel;
}

public string ConvertToString()
{
return year.ToString() + make + model;
}
}

class Program
{
Cars oneCar = new Cars();
List<Cars> manyCars = new List<Cars>();

public void Init()
{
manyCars.Add(new Cars(1993, "Nissan", "240SX"));
manyCars.Add(new Cars(2001, "Isuzu", "Rodeo"));
manyCars.Add(new Cars(2010, "Ford", "F150"));

oneCar = manyCars[2];
oneCar.model = "Pinto";

for (int i = 0; i < manyCars.Count(); i++)
Console.WriteLine(manyCars[i].ConvertToString());

Console.WriteLine(oneCar.ConvertToString());
}

static void Main(string[] args)
{
Program prg1 = new Program();
prg1.Init();
}
}

输出是这样的:

1993Nissan240SX

2001IsuzuRodeo

2010FordPinto

2010FordPinto

为什么第三行读的是 Pinto 而不是 F150?它似乎将 oneCar 变量设置为指针或其他东西。如何避免这种情况?我认为这就是“new”关键字的作用。

在此先感谢您的帮助。

最佳答案

因为Cars是一个对象,而对象在C#中是Reference Types

当你调用这行代码时:

oneCar = manyCars[2];

您正在将 oneCar 指向 manyCars[2] 的内存位置。他们引用同一个对象。更新 oneCar 也会更新 manyCars[2]

This link有一篇关于引用和值类型的好文章。

关于C# 奇数列表行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12699214/

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