gpt4 book ai didi

c# - C# 中的隐式构造函数有什么作用?

转载 作者:行者123 更新时间:2023-12-02 01:27:51 25 4
gpt4 key购买 nike

如果我们没有声明构造函数,编译器会为我们创建一个构造函数 - 隐式构造函数

它的具体作用是什么?我一直认为隐式构造函数将实例的成员初始化为一些默认值(例如字符串null整数0 bool 值false)

但是根据documentation :

Fields are initialized immediately before the constructor for theobject instance is called. If the constructor assigns the value of afield, it will overwrite any value given during field declaration.

那么,隐式构造函数的具体用途是什么?只是一个促进实例创建的幕后机制?

最佳答案

So, what exactly is the purpose of the implicit constructor? Just a behind the scenes mechanism that facilitates the creation of an instance?

是的。它的(唯一)目的是允许您编写 var x = new MyObject() 而不必创建空的 public 构造函数 public MyObject() : base() { }首先。

“隐式构造函数”的正式名称是默认实例构造函数,C# 规范的第 14.11.5 节对此进行了详细描述:


1 默认构造函数的可见性为public,除非该类是abstract,在这种情况下,默认构造函数是protected

关于c# - C# 中的隐式构造函数有什么作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74028846/

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