Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 안드로이드 AVD
- 프로그래밍
- JavaScript
- 에디터
- TinyMCE
- 글쓰기
- Spring
- 주님의교회
- 안드로이드
- 생명주기
- 제이쿼리
- 아이콘
- #청주주님의교회
- androidstudio
- java 8
- Resources
- 회원가입
- jQuery
- Android
- Activity
- 청주
- CSS
- Java
- 게시판
- Selector
- 영성
- 웹개발
- 자바
- 인텐트
- Intent
Archives
- Today
- Total
목록Develop/디자인패턴 (1)
공부하는 블로그
스트래티지 패턴(Strategy Pattern)
인터페이스 키보드나 디스플레이 따위처럼 사람과 컴퓨터를 연결하는 장치 자바에서의 인터페이스:1.기능에 대한 선언과 구현 분리 123456public interface Ainterface { // 기능에 대한 선언 public void funcA(); }cs 12345678public interface AinterfaceImpl implements Ainterface { @Override public void funcA() { System.out.println("AAA"); } }Colored by Color Scriptercs 2.기능을 사용한 통로(기능을 호출한 통로) 123456789public class Main { public static void main(String[] args) { Ainte..
Develop/디자인패턴
2018. 3. 18. 17:27