gpt4 book ai didi

c# - 我可以在 C# 中调用同一个类的重载构造函数吗?

转载 作者:行者123 更新时间:2023-11-30 17:00:44 24 4
gpt4 key购买 nike

我知道我可以用 ': this()' 来做到这一点,但如果我这样做,重载的构造函数将首先被执行,我需要它在将调用它的构造函数之后执行。 . . .解释起来很复杂让我放一些代码:

Class foo{
public foo(){
Console.WriteLine("A");
}
public foo(string x) : this(){
Console.WriteLine(x);
}
}

///....

Class main{
public static void main( string [] args ){
foo f = new foo("the letter is: ");
}
}

在这个例子中,程序将显示

A 
the letter is:

但我想要的是

the letter is: 
A

有一种“优雅的方式”可以做到这一点吗?我宁愿避免将构造函数操作提取到单独的方法并从那里调用它们。

最佳答案

是的,你可以很容易地做到这一点(不幸的是):

class foo {
public foo( ) {
Console.WriteLine( "A" );
}
public foo( string x ) {
Console.WriteLine( x );

var c = this.GetType( ).GetConstructor( new Type[ ] { } );
c.Invoke( new object[ ] { } );
}
}

class Program {
static void Main( string[ ] args ) {
new foo( "the letter is: " );
}
}

关于c# - 我可以在 C# 中调用同一个类的重载构造函数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21837485/

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