我沒有用繼承多個接口的方式驗證我的學習結果 但是多重繼承主要是在一個類中包含了接口中要實現的方法 屬性 等等 。 還有就是繼承是依次往下推
例如 A中有 1和2 B 中 有 3 和4 假如 B繼承了A那麼B中將有四個成員而不是一個成員。在一個類中也是有四個成員即1,2,3,4。而且實現接口成員時候不能把它定義成靜態的方法 。我所給的都是顯示實現接口成員
代碼如下
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
//void Find(int value);定義一個方法
//string Point { get; set; } 定義一個屬性
interface IAdd
{
string get { get; set ; }
string set { get; set;}
}
interface IOne
{
void frist(int a, int b);
void second(int a, int b);
void third(int a, int b);
}
class Add : IAdd ,IOne
{
public static void frist(int a, int b)
{
int e = a + b;
Console.WriteLine("{0}+{1} = {2}",a,b,e);
}
public static void second(int a, int b)
{
&n