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 |
Tags
- androidstudio
- Java
- 제이쿼리
- 인텐트
- 아이콘
- Android
- 주님의교회
- Spring
- 게시판
- 안드로이드 AVD
- 생명주기
- 에디터
- 영성
- TinyMCE
- 프로그래밍
- 청주
- jQuery
- JavaScript
- 웹개발
- #청주주님의교회
- 자바
- 회원가입
- 글쓰기
- Resources
- Activity
- Selector
- Intent
- java 8
- CSS
- 안드로이드
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