本文介绍了DerivedClass DerObj = new BaseClass();为什么它不工作请任何人告诉我原因的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 DerivedClass DerObj =  new  BaseClass(); 



为什么是它不工作?任何人都可以告诉我原因吗?

 使用系统; 
使用 System.Collections.Generic;
使用 System.Linq;
使用 System.Text;

命名空间 MyConsole
{
class Program
{
静态 void Main( string [] args)
{
BaseClass BaseObj = new DerivedClass();
// 任何人请告诉我为什么它不工作我不想要花费我想要理由。
DerivedClass DerObj = new BaseClass();
}
}
public class BaseClass
{
}
public class DerivedClass:BaseClass
{
}
}
解决方案




DerivedClass DerObj = new BaseClass();


Why is it not working? Can anyone please tell me the reason?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MyConsole
{
    class Program
    {
        static void Main(string[] args)
        {
            BaseClass BaseObj = new DerivedClass();
            //any one please tell why its not working i dont want do costing i want reason.
            DerivedClass DerObj = new BaseClass();
        }
    }
    public class BaseClass
    {     
    }
    public class DerivedClass : BaseClass
    {
    }
}
解决方案




这篇关于DerivedClass DerObj = new BaseClass();为什么它不工作请任何人告诉我原因的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 20:18