c# 接口相同方法申明使用
程序员文章站
2022-05-28 10:57:17
using System; namespace ConsoleApp1 { interface IInterface1 { void ft(); } interface IInterface2 { void ft(); } class MyClass : IInterface1, IInterfa.... ......
using system; namespace consoleapp1 { interface iinterface1 { void ft(); } interface iinterface2 { void ft(); } class myclass : iinterface1, iinterface2 { void iinterface1.ft() { console.writeline("1"); } void iinterface2.ft() { console.writeline("2"); } } class program { static void main(string[] args) { myclass myclass = new myclass(); iinterface1 interface1 = myclass; iinterface2 interface2 = myclass; interface1.ft(); interface2.ft(); } } }
上一篇: PHP自动加载机制实例详解
下一篇: Linux常用命令大全(新手入门)