class SomeType
{
    int x;
    string s;
    double d;
    byte b;
    
    public SomeType()
    {
        x = 5;
        s = "Hi there";
        d = 3.14159;
    }
    public SomeType(int x) : this()//此处不要这个this()有什么区别呢,效果应该是一样的吧?
    {
        this.x = x;
    }
    public SomeType(string s) : this()
    {
        this.s = s;
    }
} 请前辈帮我回答一下.