Next Previous Contents
You can download all programs as a single tar.gz file from Download String and give the following command to unpack
bash$ man tar
bash$ tar ztvf C++Programming-HOWTO.tar.gz
This will list the table of contents
bash$ tar zxvf C++Programming-HOWTO.tar.gz
This will extract the files
- Read the header file first and then see the example cpp program
- 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 http://www.angelfire.com/country/aldev0/cpphowto/example_String.cpp
- File manipulation class, only length() function is implemented..
- File.h http://www.angelfire.com/country/aldev0/cpphowto/File.h
- File.cpp http://www.angelfire.com/country/aldev0/cpphowto/File.cpp
- The zap() implemented here ..
- my_malloc.h http://www.angelfire.com/country/aldev0/cpphowto/my_malloc.h
- my_malloc.cpp http://www.angelfire.com/country/aldev0/cpphowto/my_malloc.cpp
- Implementation of string class...
- String.cpp http://www.angelfire.com/country/aldev0/cpphowto/String.cpp
- StringTokenizer.cpp http://www.angelfire.com/country/aldev0/cpphowto/StringTokenizer.cpp
- StringBuffer.cpp http://www.angelfire.com/country/aldev0/cpphowto/StringBuffer.cpp
- StringRW.cpp http://www.angelfire.com/country/aldev0/cpphowto/StringRW.cpp
- Debug facilities ..
- debug.h http://www.angelfire.com/country/aldev0/cpphowto/debug.h
- debug.cpp http://www.angelfire.com/country/aldev0/cpphowto/debug.cpp
- Makefile http://www.angelfire.com/country/aldev0/cpphowto/Makefile
- Sample java file for testing the functionalities of String class ..
- string.java http://www.angelfire.com/country/aldev0/cpphowto/string.java
Next Previous Contents