在C#中調用基本構造函數

若是我從基類繼承,並但願將某些東西從繼承類的構造函數傳遞給基類的構造函數,該怎麼作? 函數

例如, this

若是我從Exception類繼承,我想作這樣的事情: spa

class MyExceptionClass : Exception
{
     public MyExceptionClass(string message, string extraInfo)
     {
         //This is where it's all falling apart
         base(message);
     }
}

基本上,我想要的是可以將字符串消息傳遞給基本Exception類。 code


#1樓

將您的構造函數修改成如下代碼,以便它正確調用基類的構造函數: 對象

public class MyExceptionClass : Exception
{
    public MyExceptionClass(string message, string extrainfo) : base(message)
    {
        //other stuff here
    }
}

注意,構造函數不是您能夠在方法中隨時調用的。 這就是在構造函數主體中調用時出錯的緣由。 繼承


#2樓

若是因爲新的(派生的)類須要進行一些數據操做而須要當即調用基本構造函數,那麼最好的解決方案是採用工廠方法。 您須要作的是將派生的構造函數標記爲私有,而後在您的類中建立一個靜態方法來處理全部必要的工做,而後調用該構造函數並返回該對象。 字符串

public class MyClass : BaseClass
{
    private MyClass(string someString) : base(someString)
    {
        //your code goes in here
    }

    public static MyClass FactoryMethod(string someString)
    {
        //whatever you want to do with your string before passing it in
        return new MyClass(someString);
    }
}

#3樓

public class MyExceptionClass : Exception
{
    public MyExceptionClass(string message,
      Exception innerException): base(message, innerException)
    {
        //other stuff here
    }
}

您能夠將內部異常傳遞給構造函數之一。 string


#4樓

確實能夠使用base (某些東西)來調用基類的構造函數,可是若是重載,請使用this關鍵字 it

public ClassName() : this(par1,par2)
{
// do not call the constructor it is called in the this.
// the base key- word is used to call a inherited constructor   
} 

// Hint used overload as often as needed do not write the same code 2 or more times

#5樓

請注意,能夠在對基本構造函數的調用中使用靜態方法。 io

class MyExceptionClass : Exception
{
     public MyExceptionClass(string message, string extraInfo) : 
         base(ModifyMessage(message, extraInfo))
     {
     }

     private static string ModifyMessage(string message, string extraInfo)
     {
         Trace.WriteLine("message was " + message);
         return message.ToLowerInvariant() + Environment.NewLine + extraInfo;
     }
}
相關文章
相關標籤/搜索