외관 패턴
참가자들
Facade 객체가 할당한 작업을 처리합니다.
파사드에 대한 지식이 없고 그것을 참조하지 마십시오.
암호
public class Main {
public static void main(String[] args) {
Facade facade = new Facade();
facade.methodA();
facade.methodB();
}
}
public class SubSystemOne {
public void methodOne() {
System.out.println(" SubSystemOne Method");
}
}
public class SubSystemTwo {
public void methodTwo() {
System.out.println(" SubSystemTwo Method");
}
}
public class SubSystemThree {
public void methodThree() {
System.out.println(" SubSystemThree Method");
}
}
public class SubSystemFour {
public void methodFour() {
System.out.println(" SubSystemFour Method");
}
}
public class Facade {
private SubSystemOne one;
private SubSystemTwo two;
private SubSystemThree three;
private SubSystemFour four;
public Facade() {
one = new SubSystemOne();
two = new SubSystemTwo();
three = new SubSystemThree();
four = new SubSystemFour();
}
public void methodA() {
System.out.println("\nmethodA() ---- ");
one.methodOne();
two.methodTwo();
four.methodFour();
}
public void methodB() {
System.out.println("\nmethodB() ---- ");
two.methodTwo();
three.methodThree();
}
}
산출
methodA() ----
SubSystemOne Method
SubSystemTwo Method
SubSystemFour Method
methodB() ----
SubSystemTwo Method
SubSystemThree Method
eidherjulian61
/
디자인 패턴
주요 디자인 패턴
eidher ・ 2020년 9월 27일 ・ 1분 읽기
#designpatterns
#creational
#structural
#behavioral
Reference
이 문제에 관하여(외관 패턴), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/eidher/facade-pattern-5d8e
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
public class Main {
public static void main(String[] args) {
Facade facade = new Facade();
facade.methodA();
facade.methodB();
}
}
public class SubSystemOne {
public void methodOne() {
System.out.println(" SubSystemOne Method");
}
}
public class SubSystemTwo {
public void methodTwo() {
System.out.println(" SubSystemTwo Method");
}
}
public class SubSystemThree {
public void methodThree() {
System.out.println(" SubSystemThree Method");
}
}
public class SubSystemFour {
public void methodFour() {
System.out.println(" SubSystemFour Method");
}
}
public class Facade {
private SubSystemOne one;
private SubSystemTwo two;
private SubSystemThree three;
private SubSystemFour four;
public Facade() {
one = new SubSystemOne();
two = new SubSystemTwo();
three = new SubSystemThree();
four = new SubSystemFour();
}
public void methodA() {
System.out.println("\nmethodA() ---- ");
one.methodOne();
two.methodTwo();
four.methodFour();
}
public void methodB() {
System.out.println("\nmethodB() ---- ");
two.methodTwo();
three.methodThree();
}
}
methodA() ----
SubSystemOne Method
SubSystemTwo Method
SubSystemFour Method
methodB() ----
SubSystemTwo Method
SubSystemThree Method
eidherjulian61 / 디자인 패턴
주요 디자인 패턴
eidher ・ 2020년 9월 27일 ・ 1분 읽기
#designpatterns
#creational
#structural
#behavioral
Reference
이 문제에 관하여(외관 패턴), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/eidher/facade-pattern-5d8e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)