gpt4 book ai didi

c# - 继承自 Array 类

转载 作者:太空狗 更新时间:2023-10-30 00:00:30 25 4
gpt4 key购买 nike

我在 C# 中创建的所有数组都隐式继承自 Array 类。那么为什么像 Sort() 等方法对我创建的数组不可用。例如,考虑以下代码:

int [] arr = new int[]{1,2,3,4,5};

Console.WriteLine(arr.Length); //This works,Length property inherited from Array

Array.Sort(arr); //Works

arr.Sort(); //Incorrect !

请帮忙谢谢。

最佳答案

这是因为 Sort method 是在 Array 类上定义的静态方法,因此您需要这样调用它:

Array.Sort(yourArray);

您不需要类的实例来调用静态方法。您直接在类名上调用它。在 OOP 中,没有静态方法的继承概念。

关于c# - 继承自 Array 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4225490/

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