写一个java程序,实现其抽象类概念然后再将抽象类改写成接口类并实现其结果
1个回答
展开全部
public abstract animal()
{
public abstarct void run();
}
public void Dog extends animal()
{
public void run()
{
System.out.print("the dog runs slowly");
}
}
以上就是抽象类的概念。
interface animal()
{
public void run();
}
public void Dog implemants animal()
{
public void run()
{
System.out.print("the dog runs slowly");
}
}
接口的实现
{
public abstarct void run();
}
public void Dog extends animal()
{
public void run()
{
System.out.print("the dog runs slowly");
}
}
以上就是抽象类的概念。
interface animal()
{
public void run();
}
public void Dog implemants animal()
{
public void run()
{
System.out.print("the dog runs slowly");
}
}
接口的实现
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询