개발/기타
-
-
UML(클래스 설계)개발/기타 2012. 8. 28. 19:43
Dependency모든 관계는 암시적으로 Dependecy 관계를 가지고 있다메소드 내에서 아규먼트로 사용한다던지 메소드 내의 지역변수로 사용하는 경우 Association멤버로 참조(포인터?) Aggregation전체가 부분을 포함하는(has a) 관계포함하는 클래스와 포함되는 클래스의 생명주기(라이프사이클)는 다르다 Composition전체가 부분을 포함하는(uses a) 관계포함하는 클래스와 포함되는 클래스의 생명주기가 동일하다 * 서로 의미있는 클래스들의 관계> 연관( association ) 관계일반적인 의미의 연결 관계(그래프?) 전체와 부분인 경우(트리?)집합( aggregation ) 관계합성( composition ) 관계life cycle 이 같은 경우 > 상속( inheritance ..
-
소프트웨어 공학개발/기타 2010. 9. 1. 22:26
개발을 하기 위한 린 접근법조리법을 만드는 것린 생산 실천방법요리를 만드는 것 애자일 소프트웨어 개발 참조 사이트:http://blog.creation.net/527http://swarchi.tistory.com/11 http://www.martinfowler.com/articles/newMethodology.html http://swarchi.tistory.com/12 http://www.developerdotstar.com/mag/articles/reeves_design.html
-
Open Source개발/기타 2009. 7. 15. 01:26
Windows Directory Statistics Cygwin/X, Cygwin's implementation of the X server for Microsoft Windows, uses the X.Org Server, as do VcXsrv[28] (Visual C++ X-server[29]) and Xming. PuTTY: a free SSH and Telnet client 리눅스아파치이클립스파이어폭스마이SQL제이쿼리 NoSQL(Not Only SQL)하둡 애플리케이션 영역펜타호나 JBPM, 알프레스코, 컴피에르, 수가CRM 스프링(Spring)삼성SDS의 '애니프레임'LG CNS의 '데브온 자바'SK C&C의 '넥스코어' NHN ‘익스프레스엔진(콘텐츠 관리)’과 ‘큐브리드(DBMS)’, ‘nFO..
-
Cygwin개발/기타 2009. 7. 13. 22:15
여기에서 Cygwin을 인스톨한다. Devel - gcc-g++ Devel - libncurses-devel Devel - flex Devel - bison Devel - ctags Devel - make Devel - autoconf Devel - automake Devel - libtool Editors - vim 사용은 $ ./configure --prefix=/usr/local $ make $ make install $ export CC='gcc -mno-cygwin' $ export CXX='gcc -mno-cygwin' $ ./configure --host=mingw32 --build=mingw32 --target=mingw32 /* or $ CC='gcc -mno-cygwin' CXX='g+..