[CodeComplete CH15] 조건문 사용하기
1. If 문 - 일반적인 경우에 대한 코드를 먼저 작성한 다음 특별한 경우를 작성한다. - 동치에 대해서 정확하게 이동하도록 한다. - 정상적인 경우를 else가 아니라 if문 다음에 입력한다. 수많은 오류를 아무렇게나 처리하는 비주얼 베이직 예제 OpenFile( inputFile, status ) If (status = Status_Error) Then errorType = FileOpenError Else ReadFile( inputfile, fileData, status ) If( status = Status_Success ) Then SummarizeFileData( fileData, summaryData, status) If( status = Status_Error ) Then errorTy..
2009.10.21