扩展方法和本地'这个'变量

时间:2015-10-10 17:34:42

标签: c# extension-methods local ref

据我所知,扩展方法中的this作为ref变量传递。我可以通过

来验证这一点
public static void Method<T>(this List<T> list)
{
    list.Add(default(T));
}

List<int> ints = new List<int>(new int[] { 1, 2, 3, 4, 5 });
ints.Method();

我的List<int> ints现在是1, 2, 3, 4, 5, 0

但是当我这样做时

public static void Method<T>(this List<T> list, Func<T, bool> predicate)
{
    list = list.Where(predicate).ToList();
}

List<int> ints = new List<int>(new int[] { 1, 2, 3, 4, 5 });
ints.Method(i => i > 2);

我希望我的List<int> ints3, 4, 5,但仍保持不变。我错过了一些明显的东西吗?

2 个答案:

答案 0 :(得分:5)

this扩展方法参数按值传递,而不是按引用传递。这意味着在进入扩展方法时,您有两个指向同一内存地址的变量:原始intslist参数。将项添加到扩展方法内的列表时,它会反映在ints中,因为您修改了两个变量引用的对象。重新分配list时,将在托管堆上创建新列表,并且扩展方法的参数指向此列表。 ints变量仍指向旧列表。

答案 1 :(得分:3)

好吧,当您尝试修改某个类实例的属性时,您甚至不需要ref因为您正在修改实例而不是引用它。

在此示例中,您在修改属性时不需要ref关键字:

    class MyClass
    {            
        public int MyProperty { get; set; }
    }

    static void Method(MyClass instance)
    {
        instance.MyProperty = 10;                     
    }

    static void Main(string[] args)
    {
        MyClass instance = new MyClass();
        Method(instance);

        Console.WriteLine(instance.MyProperty);
    }

输出:10

这里你需要ref关键字,因为你使用引用而不是实例:

    ...

    static void Method(MyClass instance)
    {
        // instance variable holds reference to same object but it is different variable
        instance = new MyClass() { MyProperty = 10 };
    }

    static void Main(string[] args)
    {
        MyClass instance = new MyClass();
        Method(instance);

        Console.WriteLine(instance.MyProperty);
    }

输出:0

对于您的方案来说,扩展方法与普通静态方法相同,如果您在方法内创建新对象,则使用ref关键字(它不可用于扩展)方法虽然)或返回此对象否则对它的引用将丢失。

所以在你的第二种情况下你应该使用:

public static List<T> Method<T>(this List<T> list, Func<T, bool> predicate)
{
    return list.Where(predicate).ToList();
}

List<int> ints = new List<int>(new int[] { 1, 2, 3, 4, 5 });
ints = ints.Method(i => i > 2);

foreach(int item in ints) Console.Write(item + " ");

输出:3, 4, 5