- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我已经阅读了一些关于在 c++ 和 c# 之间的构造函数或析构函数中调用的虚函数的不同行为的资料。我测试下面的代码以确认 c# 可以调用 virtual dirived 虚函数,因为它的对象存在于构造函数之前。但是我发现结果与 C++ 中的类似代码相同。谁能告诉我为什么 c# 不能显示“22”而只能显示“12”的原因。
C#代码
public class Base
{
public Base() { fun(); }
public virtual void fun() { Console.WriteLine(1); }
}
public class Derived : Base
{
public Derived() { fun(); }
public virtual void fun() { Console.WriteLine(2); }
}
C++代码
class Base
{
public:
Base(){fun();}
virtual void fun(){cout<<1;}
};
class Derived : Base
{
public:
Derived(){fun();}
virtual void fun(){cout<<2;}
};
c++和C#的输出结果都是“12”。
最佳答案
您的 C# 代码中有错误。
要覆盖 C# 函数,您必须指定 override
关键字。如果您再次编写 virtual
,您将隐藏基本函数,但如果没有 new
关键字,您应该会收到警告。
如果两者都声明为虚函数,则您有两个同名函数!
让我们举个例子...
public class Base
{
public Base() { fun(); }
public virtual void fun() { Console.Write(1); }
}
public class Derived : Base
{
public Derived() { fun(); }
public override void fun() { Console.Write(2); }
}
public class DerivedWithError : Base
{
public DerivedWithError() { fun(); }
public new virtual void fun() { Console.Write(3); }
}
...
// This will print "22".
Base normal = new Derived();
Console.WriteLine();
// This will print "13" !!!
Base withError = new DerivedWithError ();
Console.WriteLine();
// Let's call the methods and see what happens!
// This will print "2"
normal.fun();
Console.WriteLine();
// This will print "1" !!!
withError.fun();
Console.WriteLine();
Shadowing 的意思是“在不使用多态性的情况下添加一个同名的新方法”。如果没有 override
关键字,您将禁用多态性。
所以现在一切都应该干净且易于理解。
DerivedWithError.fun() 是一种全新的虚拟方法。它与基类中的函数 fun 同名,但它们没有关系!
从虚表(或虚方法表,如果你喜欢另一个名字)的角度来看,带阴影的基函数和派生函数在虚表中占据两个不同的条目,如果它们具有相同的名称.如果改用override
,就是强制派生类中的func方法覆盖Base.func占用的虚表项,这就是多态。
危险但 .NET 允许,请始终注意语法!
您可以在 C# 的构造函数中调用虚函数,但通常在派生类中,如果在基类构造函数中调用方法,您应该注意在派生类中如何使用字段。现在,为了干净并避免混淆和风险,您应该避免在构造函数中调用虚方法,但实际上它在几次时都非常有用。
例如所谓的“工厂方法”,它不访问任何变量。
public abstract class MyClass
{
public IList<string> MyList { get; private set; }
public MyClass()
{
this.MyList = this.CreateMyList();
}
protected abstract IList<string> CreateMyList();
}
public class MyDerived : MyClass
{
protected override IList<string> CreateMyList()
{
return new ObservableCollection<string>();
}
}
这是完全合法的,而且有效!
关于c# - 在构造函数或析构函数中调用的虚函数的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8058772/
我开始考虑在我 future 的项目或重构中实现控制反转容器,我想知道在正确设计依赖项时哪些原则(除了 GoF 模式)可能需要牢记在心。假设我需要构建一个简单的控制台应用程序,如果它可以访问互联网,它
假设我有一个 RxC contingency table 。这意味着有 R 行和 C 列。我想要一个维度为 RC × (R + C − 2) 的矩阵 X,其中包含行的 R − 1 “主效应”以及列的
我正在尝试使用 DKMS 为正在运行的内核 (4.4) 构 build 备树覆盖。我天真的 Makefile 如下: PWD := $(shell pwd) dtbo-y += my-awsome-o
我有一个 sencha touch 项目。我是用 phonegap 2.9 构建的,并且可以正常工作 device.uuid 返回到设备 ID。当我尝试使用 3.1 device.uuid 构建时抛出
我在安装了 Xcode 4.5.1 的 Mt Lion 上运行。 默认情况下,当我构建并部署到 iOS 5.1 设备时,显示会在我旋转设备时旋转,但当我部署到 iOS 6 模拟器或运行 iOS 的 i
我正在尝试使用 Google Analytics Reporting API v4 构建多折线图。 一张图表,其中我按每天的 session 计数为每个设备(台式机/平板电脑/移动设备)设置了一条线。
我一生都无法使用 xcode 组织者“自动设备配置”中的“团队配置配置文件”在 xcode 4.0.1 中将我的应用程序构建到我的 iPad 上。 该应用程序完美地构建到模拟器,但当我构建到 iPad
我是一名优秀的程序员,十分优秀!