为什么aFooList包含最后一个项目的五个副本,而不是我插入的五个项目?

预期输出:01234

实际输出:44444

using System;
using System.Collections.Generic;

namespace myTestConsole {
    public class foo {
        public int bar;
    }

    class Program {
        static void Main(string[] args) {
            foo aFoo = new foo(); // Make a foo
            List<foo> aFooList = new List<foo>(); // Make a foo list

            for (int i = 0; i<5; i++) {
                aFoo.bar = i;
                aFooList.Add(aFoo);
            }

            for (int i = 0; i<5; i++) {
                Console.Write(aFooList[i].bar);
            }
        }
    }
}

最佳答案

您已添加同一项目aFoo 5次。修改引用类型对象的内容时,您不会创建新副本,而是修改了同一对象。

10-08 17:33