zoukankan
html css js c++ java
面向接口编程之惑 第二版
刚才对面向接口充满了疑惑 经过自己的仔细推敲 加上 Vs 的智能提示 终于找到解决方法了 放代码出来啊 如果你刚看过那篇 你应该很清楚了啊
class
Program
{
static
void
Main(
string
[] args)
{
Computeruse com
=
new
Computeruse();
Adult me
=
new
Adult();
me.UseComputer(com);
Child mybrother
=
new
Child();
mybrother.UseComputer(com);
Console.ReadLine();
}
}
class
Computeruse : IFinal
{
public
Computeruse()
{
Console.WriteLine(
"
这个电脑我在用 别管我干嘛!!
"
);
}
IFinal 成员
#region
IFinal 成员
public
void
ToLearn()
{
Console.WriteLine(
"
我用电脑学习!
"
);
}
public
void
ToWork()
{
Console.WriteLine(
"
我用电脑工作!
"
);
}
public
void
ToFun()
{
Console.WriteLine(
"
我用玩游戏!
"
);
}
#endregion
}
interface
IFinal
{
void
ToLearn();
void
ToWork();
void
ToFun();
}
interface
IComputerLearn:IFinal
{
void
ToLearn();
}
interface
IComputerWork:IFinal
{
void
ToWork();
}
interface
IComputerToFun:IFinal
{
void
ToFun();
}
class
Adult
{
public
void
UseComputer(IFinal IFinal)
{
IFinal.ToLearn();
IFinal.ToFun();
}
}
class
Child
{
public
void
UseComputer( IFinal IFinal)
{
IFinal.ToFun();
}
}
这个应该是面向接口的最终版本了 希望下个项目会用到这个啊 呵呵~~
查看全文
相关阅读:
[图论训练]1143: [CTSC2008]祭祀river 二分图匹配
[图论训练]BZOJ 2118: 墨墨的等式 【最短路】
HDU 5402 : Travelling Salesman Problem
[图论训练]BZOJ 3245: 最快路线【最短路】
BZOJ 1724: [Usaco2006 Nov]Fence Repair 切割木板
Android 全屏方法
【转载】差分约束
BZOJ 1688: [Usaco2005 Open]Disease Manangement 疾病管理
Pain for friend
BZOJ 1739: [Usaco2005 mar]Space Elevator 太空电梯
原文地址:https://www.cnblogs.com/DrEdison/p/1246949.html
最新文章
bzoj 3672: [Noi2014]购票 树链剖分+维护凸包
bzoj 3105: [cqoi2013]新Nim游戏 异或高消 && 拟阵
bzoj 2555: SubString 后缀自动机+LCT
bzoj 3489: A simple rmq problem k-d树思想大暴力
BZOJ 1596: [Usaco2008 Jan]电话网络
BZOJ 1682: [Usaco2005 Mar]Out of Hay 干草危机
BZOJ 1688: [Usaco2005 Open]Disease Manangement 疾病管理
BZOJ 2442: [Usaco2011 Open]修剪草坪
BZOJ 1709: [Usaco2007 Oct]Super Paintball超级弹珠
BZOJ 1637: [Usaco2007 Mar]Balanced Lineup
热门文章
BZOJ 1707: [Usaco2007 Nov]tanning分配防晒霜
BZOJ 1828: [Usaco2010 Mar]balloc 农场分配
BZOJ 1641: [Usaco2007 Nov]Cow Hurdles 奶牛跨栏
BZOJ 1574: [Usaco2009 Jan]地震损坏Damage
bzoj 1574: [Usaco2009 Jan]地震损坏Damage
bzoj 1572: [Usaco2009 Open]工作安排Job
BZOJ 1571: [Usaco2009 Open]滑雪课Ski
论蛋疼的调戏matrix67的首页
FZU Problem 2200 cleaning dp
BZOJ 1787: [Ahoi2008]Meet 紧急集合
Copyright © 2011-2022 走看看