我不熟悉使用abstract class
。無法創建抽象類或接口的實例
我想調用abstract class
並得到這個錯誤Cannot create an instance of the abstract class or interface
,我已經研究這個錯誤,但我真的很困惑這一點。
這裏是我的代碼:
string B1String;
while ((B1String = OasisFile.ReadLine()) != null)
{
Questions_Base oQuestions_Base = new Questions_Base(); // error here
oQuestions_Base.Import(B1String);
}
請諮詢我..謝謝!
我想知道是否應該刪除抽象修飾符。班上沒有抽象成員。 – ChaosPandion
只是看了這個。 http://www.programmersheaven.com/2/Les_CSharp_7_p1 –
@Chaos:不一定。這可能是因爲Questions_Base不是一個完整的現實世界對象,而只是爲事物提供了通用的實現。 –