gpt4 book ai didi

c# - 重载方法——引用和实例化对象的区别

转载 作者:行者123 更新时间:2023-11-30 14:44:55 26 4
gpt4 key购买 nike

在上面的代码片段中,我有一个基类 Shape 和它的两个派生类 RectangleTriangle。我实例化了它们,但对于一个 Triangle 对象,我使用了他的基类的引用类型。
所以现在当我调用方法 calculate() 时,它会更喜欢调用采用基类参数的方法。

这样做的目的是什么?

我正在创建 Triangle 对象而不是 Shape 对象 我只是使用基类的引用。我的另一个问题是,它们与使用基类的引用和从派生实例化对象而不是使用派生引用有什么其他区别吗?

public static void Main(string[] args)
{
Point tc = new Point(3, 4);
Point rc = new Point(7, 5);

Shape shape = new Triangle(tc, 4, 4, 4);

calculate(shape);
}

public static void calculate(Shape shape) <<-- new Triangle() with base class ref will came here.
{
Console.WriteLine("shape");
}

public static void calculate(Rectangle rectangle)
{
Console.WriteLine("rectangle");
}

public static void calculate(Triangle triangle) <<-- new Triangle() using triangle ref will came here.
{
Console.WriteLine("triangle");
}

最佳答案

第一个问题:所以现在当我调用一个方法 calculate() 时,它更愿意调用采用基类参数的方法。这样做的目的是什么?

回答:怎么可能是其他方式呢?编译器无法确定对象的“实际”类型,因为只有在运行时才能真正知道。您有责任使用“反射”(例如 GetType() 和 typeof() )将该父对象(形状)转换为其子对象(三角形),然后将其作为参数传递。如果它以任何其他方式工作,您将无法正确实现下面的方法。

 public foo(object var1){
// Test for var1's type and perform a operation
}

第二个问题:它们与使用基类的引用和从派生实例化对象而不是使用派生引用有什么其他区别吗?

回答:在内存中没有,引用总是指向相同的数据,但上下文会改变。这意味着对象是哪种类型的对象(子对象或父对象)决定了可以访问哪些字段/方法。将对象转换为哪种类型不会改变实际存储在堆上的内容,而是会改变您可以访问的内容。下面的代码片段证明了这一点。

    public class Parent {
public int var1 = 1;
}

public class Child : Parent {
public int var2 = 2;
}

public void foo () {
Parent theObject = new Child();
int num1 = theObject.var1; // Valid
int num2 = theObject.var2; // Invalid
int num3 = ((Child)theObject).var2; // Valid
}

关于c# - 重载方法——引用和实例化对象的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56738687/

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