모든 프로그램 파일을 하나의 tar.gz 으로 4절에서 받을 수 있다. 그리고 압축을 다음과 같이 풀면 된다.
bash$ man tar bash$ tar ztvf C++Programming-HOWTO.tar.gz 이는 압축된 파일들을 보여줄 것이다. bash$ tar zxvf C++Programming-HOWTO.tar.gz 이는 압축을 실제로 풀 것이다. |
헤더파일을 먼저 읽고, 예제 cpp파일을 보아라.
String.h http://www.angelfire.com/country/aldev0/cpphowto/String.h
StringBuffer.h http://www.angelfire.com/country/aldev0/cpphowto/StringBuffer.h
StringTokenizer.h http://www.angelfire.com/country/aldev0/cpphowto/StringTokenizer.h
StringRW.h http://www.angelfire.com/country/aldev0/cpphowto/StringRW.h
string_multi.h http://www.angelfire.com/country/aldev0/cpphowto/string_multi.h
example_String.cpp example_String.cpp 'Source code of C++ howto'을 클릭해라.
파일 관리 class. length() 함수만 구현되었다.
File.h http://www.angelfire.com/country/aldev0/cpphowto/File.h
File.cpp File.cpp 'Source code of C++ howto'를 클릭하라.
zap() 함수의 구현은 아래 링크에 있다.
my_malloc.h http://www.angelfire.com/country/aldev0/cpphowto/my_malloc.h
my_malloc.cpp my_malloc.cpp 'Source code of C++ howto'를 클릭해라.
String class의 구현.
String.cpp String.cpp 'Source code of C++ howto'를 클릭해라.
StringTokenizer.cpp StringTokenizer.cpp 'Source code of C++ howto'를 클릭해라.
StringBuffer.cpp StringBuffer.cpp 'Source code of C++ howto'를 클릭해라.
StringRW.cpp StringRW.cpp 'Source code of C++ howto'를 클릭해라.
디버깅 도구들 ..
debug.h http://www.angelfire.com/country/aldev0/cpphowto/debug.h
debug.cpp debug.cpp 'Source code of C++ howto'를 클릭해라.
Makefile.unx http://www.angelfire.com/country/aldev0/cpphowto/Makefile.unx
String class의 작동을 테스트하기 위한 예시용 자바 파일.