Programming30 과연 무엇일까? (*(void(*)())0)(); 2008. 3. 4. Generic Generate Algorithm #include #include #include #include #include using namespace std; template class calc_square { T i; public : calc_square() : i(0) {} T operator() () { ++i; return i * i;} }; int main() { cout 2008. 2. 29. Java에서 Pattern, Matcher로 원하는 것만 뽑아내기. /** * XML파일을 파싱해서 이미지 파일 목록만 뽑아낸다. * @param XMLFilePath * @return 이미지 파일 목록이 들어있는 ArrayList */ private ArrayList extractImgSrc(String XMLFilePath) { BufferedReader reader; StringBuffer sb = new StringBuffer(); char[] buf = new char[512]; ArrayList imgTagList = new ArrayList(); ArrayList imgSrc = new ArrayList(); Pattern pattern; Matcher matches; try { reader = new BufferedReader(new FileReader(X.. 2008. 2. 23. Generic for_each Algorithm #include #include #include #include #include using namespace std; void print_list(string s) { cout 2008. 2. 19. 이전 1 2 3 4 5 6 7 8 다음