首页 > 代码库 > 代理模式--java例子
代理模式--java例子
public interface Person{
public void eat();
}
public class Boy implements Person
{
private String name; // 姓名
public Boy(String name) {
this.name = name;
}
@Override
public void eat
() {
System.out.println(name+"吃饭不能吃菜");
}
}
public class Man implements Person{
private Person
person; // 被代理对象
public Man
(Person
person
) {
this.person
= person
;
}
@Override
public void eat
() {
person
.eat
();
System.out.println("允许吃菜了");
}
}
public class ProxyTest{
public static void main(String[] args) {
Person p
erson
= new Man
(new Boy("小明"));
p
erson
.eat();
}
}
代理模式--java例子
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。