码迷,mamicode.com
首页 > 编程语言 > 详细

java(10)接口抽象类

时间:2016-05-05 02:00:03      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

package a;

public interface aaa {
	public int getMax();
	String getMes();

}



package a;
import static java.lang.System.out;

public class test implements aaa
{
	public int getMax()
	{
		int i = 123;
		return i;
	}
	
	public String getMes()
	{
		String s ="实现接口里的方法";
		return s;
	}

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		test t = new test();
		int i = t.getMax();
		String s = t.getMes();
		out.println(i);
		out.println(s);

	}

}

  

抽象类的抽象方法必须被继承,抽象类里可以有普通方法,抽象类不能被实例化

instanceof

if( a instanceof B)

{ }

 

java(10)接口抽象类

标签:

原文地址:http://www.cnblogs.com/yanmantianxia/p/5460338.html

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