'IT책 정리실/C++ Coding Standards : C++ 코딩의 정석'에 해당되는 글 103건
- 2009/05/04 C++ Coding Standard : 코딩의 정석 목차
- 2009/05/04 항목 75 : 예외 명세표는 만들 필요가 없다. ( Avoid exception specifications. )
- 2009/05/02 항목 74 : 목적에 맞게 오류를 보고하고, 제어하고, 변환하라. ( eport, handle, and translate errors appropriately. )
- 2009/05/02 항목 73 : 예외를 발생시킬 때에는 값으로 하고, 잡아낼 때에는 참조로 하라. ( Throw by value, catch by reference. )
- 2009/05/02 항목 72 : 오류 보고에는 예외를 활용하라. ( Prefer to use exceptions to report errors. )
- 2009/04/29 항목 71 : 오류로부터 안전한 코드를 디자인하고 작성하라. ( Design and write error-safe code. )
- 2009/04/28 항목 70 : 어디까지가 오류인지 명확히 해두자. ( Distinguish between errors and non-errors. )
- 2009/04/17 항목 69 : 합리적인 오류 처리 방식을 수립하고, 엄격히 그 방식을 따르라. ( Establish a rational error handling policy, and follow it strictly. )
- 2009/04/17 항목 68 : 내부적인 가정과 규칙을 확실하게 명시하라. ( Assert liberally to document internal assumptions and invariants. )
- 2009/04/17 항목 100 : 배열을 다형적으로 다루어서는 안된다. ( Don’t treat arrays polymorphically. )
