C# - 无法创建抽象类或接口的实例

时间:2014-06-26 17:56:59

标签: c# class oop interface

我在C#教程中收到错误Cannot create an instance of the abstract class or interface

这一行失败了:result = new Account(nameText, addressText, balance);

这是我的班级:

public abstract class Account : IAccount
{
    //---------------------------------------------------------------
    // Constructor
    //---------------------------------------------------------------
    public Account(string inName, string inAddress, decimal inBalance)
    {
        name = inName;
        address = inAddress;
        balance = inBalance;
    }
    public Account(string inName, string inAddress) :
        this(inName, inAddress, 0)      // 'this ties this alternate constructor back to the original constructor (directly above)
    {
    }
    public Account(string inName) :     // 'this ties this alternate constructor back to the original constructor (directly above)
        this(inName, "Not Supplied", 0)
    {
    }


    //---------------------------------------------------------------
    // Properties
    //---------------------------------------------------------------
    //  *       *       *       *       *       *       *       *
    //global account constraints
    private static decimal minIncome = 10000;
    private static int minAge = 18;

    //  *       *       *       *       *       *       *       *
    //personal details
    private string name;
    private string address;

    //  *       *       *       *       *       *       *       *
    //account details
    public int AccountNumber;
    public static decimal InterestRateCharged;
    public AccountState State;
    private decimal balance = 0;
    public int Overdraft;


    //---------------------------------------------------------------
    // Methods
    //---------------------------------------------------------------
    // loads the account
    public static Account Load(string filename)
    {
        Account result = null;
        System.IO.TextReader textIn = null;

        try
        {
            textIn = new System.IO.StreamReader(filename);
            string nameText = textIn.ReadLine();
            string addressText = textIn.ReadLine();
            string balanceText = textIn.ReadLine();
            decimal balance = decimal.Parse(balanceText);
            result = new Account(nameText, addressText, balance);
        }
        catch
        {
            return null;
        }
        finally
        {
            if (textIn != null) textIn.Close();
        }
        return result;
    }

};

这是我的界面:

public interface IAccount
{
    // account info
    int GetAccountNumber();
    string GetName();
    decimal GetBalance();

    // account actions
    void PayInFunds(decimal amount);
    bool WithdrawFunds(decimal amount);
    string RudeLetterString();
}

2 个答案:

答案 0 :(得分:13)

这是抽象类的定义。你不能创建它的实例,只能是从它派生的类型。

想想像水果一样的东西。你不能把水果放在桌子上。 必须是水果的某种类型,例如橙色或苹果。在这种情况下, fruit 将是一个抽象类,并且可以实现所有水果共有的功能和属性。 Orange Apple 将派生自 Fruit 类,并实现特定于类型水果的功能和属性。

如果创建类的实例没有意义,请使用abstract关键字,但是您希望实现可以在派生类型之间共享的基本功能。如果您只想在没有任何共享代码的情况下定义合约,则可以使用界面。

答案 1 :(得分:1)

public abstract class Account : IAccount

删除单词abstract

如果您只想从静态方法创建Account实例,请改为构造函数privateprotected