항목 81 : 추가 작업에 있어 범위를 지정한 방식을 활용하라. (Prefer range operations to single-element operations. ) BY 최익필 책 정리/C++ Coding Standards : C++ 코딩의 정석 2009. 4. 12. 19:38 { 책의 내용을 옮기자면, "바람이 적절히 불 때에는 노를 저을 필요가 없다.(라틴 속담)" 이것과 같이 봐야 할 것은 algorithm 이 있는데, 이것과 같이 알아 보는게 좋다. ^^ } 공유하기 게시글 관리 최익필의 이름없는 블로그 저작자표시 '책 정리 > C++ Coding Standards : C++ 코딩의 정석' 카테고리의 다른 글 항목 86 : 적절한 STL 정렬 알고리즘을 사용하라. ( Use the right STL sort algorithm. ) (0) 2009.04.16 항목 85 : 적절한 STL 검색 알고리즘을 사용하라. ( Use the right STL search algorithm. ) (0) 2009.04.16 항목 84 : 직접 작성한 루프보다는 알고리즘을 활용하라. ( Prefer algorithm calls to handwritten loops. ) (0) 2009.04.16 항목 83 : 검증된 STL 임플리먼테이션을 사용 하라. ( Use a checked STL implementation. ) (0) 2009.04.16 항목 82 : 용량의 축소와 요소의 제거에 있어 적절한 방법을 사용하라. ( Use the accepted idioms to really shrink capacity and really erase elements. ) (0) 2009.04.16 항목 80 : 요소의 추가에는 push_back을 활용하라. ( Prefer push_back to other ways of expanding a sequence. ) (0) 2009.04.12 항목 79 : 컨테이너에는 값과 스마트 포인터만을 저장하라. ( Store only values and smart pointers in containers. ) (0) 2009.04.12 항목 78 : C++ API가 아닌 다른 것들과의 데이터 교환을 위해서는 vector(그리고 string::c_str)를 활용하라. ( Use vector (and string::c_str) to exchange data with non-C++ APIs. ) (0) 2009.04.12 항목 77 : 배열 대신 vector와 string을 사용 하라. ( Use vector and string instead of arrays. ) (0) 2009.04.12 항목 76 : 표준적으로 vector를 사용하고, 그렇지 않다면 적절한 컨테이너를 선택하라. ( Use vector by default. Otherwise, choose an appropriate container. ) (0) 2009.04.12
최근댓글