程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 計算機專業-接口問題?“不實現接口成員”,不知道哪裡有問題?

計算機專業-接口問題?“不實現接口成員”,不知道哪裡有問題?

編輯:編程綜合問答
接口問題?“不實現接口成員”,不知道哪裡有問題?

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

namespace ConsoleApplication1
{
public interface IStudent
{
void StudyBase();
}
public interface IEmployee
{
void Work();
}
public interface IInforStudent : IStudent
{
void StudySpecial();
}

public class InfoStudent : IEmployee,IInforStudent
{

    public void Work()
    {
        Console.WriteLine("你的工作任務必須完成");
    }

    public void StudySpecial()
    {
        Console.WriteLine("你是計算機專業的學生,必須學習");
    }
}


class Program
{
    static void Main(string[] args)
    {
        InfoStudent student = new InfoStudent();
        student.Work();
        student.StudySpecial();
   }
}

}

最佳回答:


public class InfoStudent : IEmployee,IInforStudent
{
public void StudyBase()
{
// ...
}

public void Work()
{
    Console.WriteLine("你的工作任務必須完成");
}

public void StudySpecial()
{
    Console.WriteLine("你是計算機專業的學生,必須學習");
}

}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved