using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
TestThis test = new TestThis(".....");
TestThis test2 = new TestThis();
}
public class TestThis
{
public TestThis()
{
Console.WriteLine("我是无参构造函数,被执行了");
}
public TestThis(string text) : this() //先执行TestThis()构造函数,再执行 TestThis(string text)
{
Console.WriteLine("我是有参构造函数:"+text);
Console.ReadKey();
}
}
}
}
C#用this串联构造函数
最新推荐文章于 2022-12-03 20:03:52 发布