码迷,mamicode.com
首页 > 其他好文 > 详细

【DAY5】第五天的关于接口的作业练习

时间:2016-05-29 23:32:58      阅读:342      评论:0      收藏:0      [点我收藏+]

标签:java

定义白富美接口,类WomanStar实现接口

interface iRich
{
	void rich();
}
interface iWhite
{
	void white();
}
interface ibeaut
{
	void beaut();
}
class WomanStar implements iRich,iWhite,ibeaut 
{
	public void rich()
	{
		System.out.println("I‘m beaut");
	}
	public void white()
	{
		System.out.println("I‘m white");
	}
	public void beaut()
	{
		System.out.println("I‘m richer");
	}
	public void findlove()
	{
		System.out.println("Look at me,I‘m the girl who is your find");
		white();
		beaut();
		rich();
	}

}
class TuRicher
{
	int money=127;
	public void findlove()
	{
		System.out.println("I have "+money+" millions us dollars");
		System.out.println("Who is rich white and beaut girl?please marry me.");
		
	}
	public void marry(WomanStar rose)
	{
		System.out.println("Let‘s try to love");
	}
}
class MarryMe
{
	public static void main(String[] args)
	{
		WomanStar rose =new WomanStar();
		TuRicher  jack =new TuRicher();
		jack.findlove();
		rose.findlove();
		jack.marry(rose);
	}
}


本文出自 “yehomlab” 博客,转载请与作者联系!

【DAY5】第五天的关于接口的作业练习

标签:java

原文地址:http://yehom.blog.51cto.com/5159116/1784229

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!