黑马程序员技术交流社区
标题:
代码分享
[打印本页]
作者:
wuchangfeng
时间:
2015-7-20 07:11
标题:
代码分享
class Person
{
private void method()
{
System.out.println("method");
}
public void show()
{
method();
System.out.println("hello world");
}
}
class Student extends Person
{
public void function()
{
//method();
show();
}
}
class Teacher
{
}
class ExtendsDemo
{
public static void main(String[] args)
{
//创建对象
Person p = new Person();
p.show();
//p.method();
Student s = new Student();
s.show();
//s.method(); 不能继承非私有化的方法
}
}
作者:
噜啦啦噜啦啦
时间:
2015-7-20 09:24
赞赞赞:victory:
作者:
zy1987
时间:
2015-7-20 12:37
赞一个。。。
作者:
eayonh
时间:
2015-7-20 14:52
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2