C++/분기 안에서 아무것도 하지 않을 때 쓸만한 주석

C++에서 분기 안에서 아무 작업도 수행하지 않을 때, 코드의 가독성을 높이기 위해 주석을 추가하면 코드를 이해하기 쉽게 만들어주고, 의도를 명확히 해 나중에 코드를 유지보수할 때 된다. 아래는 이러한 상황에서 사용할 수 있는 몇 가지 주석 예제이다

1. // Do nothing
if (condition) {
    // Do nothing
}

2. // No action needed
if (condition) {
    // No action needed
}

3. // Placeholder for future code
if (condition) {
    // Placeholder for future code
}

4. // TODO: Handle this case later
if (condition) {
    // TODO: Handle this case later
}

5. // Skip processing for this condition
if (condition) {
    // Skip processing for this condition
}

이 글에는 0 개의 댓글이 있습니다.