gpt4 book ai didi

c# - 什么是基本构造函数调用的静态?

转载 作者:行者123 更新时间:2023-11-30 13:22:53 24 4
gpt4 key购买 nike

<分区>

以下 C# 代码无法编译。

public class BaseType
{
public BaseType(int bar)
{
// Do stuff with bar...
}
}

public class DerivedType : BaseType
{
private int foo;

public DerivedType() : base(foo = 0) {}
}

错误发生在调用 DerivedType 的基本构造函数时,消息为“无法在静态上下文中访问非静态字段‘foo’”。此错误消息告诉我什么? “foo”不是静态的,类也不是静态的,而且这些都不是静态构造函数。

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