gpt4 book ai didi

c# - 'base' 和 'this' 在引用父对象字段、属性或方法时有区别吗?

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

考虑以下代码:

public class Vehicle
{
public void StartEngine()
{
// Code here.
}
}

public class CityBus : Vehicle
{
public void MoveToLocation(Location location)
{
////base.StartEngine();
this.StartEngine();
// Do other stuff to drive the bus to the new location.
}
}

this.StartEngine();base.StartEngine();有什么区别吗,除了第二种情况,StartEngine 方法不能移动到或覆盖 CityBus 类?对性能有影响吗?

最佳答案

没有区别,StartEngine() 不是虚拟的。你不应该使用 base,以防你重构它使其成为虚拟的。性能差异不可测量。

关于c# - 'base' 和 'this' 在引用父对象字段、属性或方法时有区别吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3614559/

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