아무 단어나 입력하세요!

"comment out" in Korean

주석 처리하다

Definition

코드의 특정 부분을 주석 처리하여 실행되지 않게 만드는 것. 코드를 삭제하지 않고 임시로 비활성화할 때 사용됨.

Usage Notes (Korean)

프로그래밍 할 때만 사용함. '주석 처리하다'는 코드를 잠시 비활성화할 때 쓰며, 단순히 설명을 다는 것과 다름.

Examples

If you want to test the code, just comment out this line.

코드를 테스트하고 싶으면 이 줄을 **주석 처리**하면 돼요.

You should comment out any function you are not using.

사용하지 않는 함수는 **주석 처리**해두세요.

Remember to comment out the debug statements before release.

배포 전에 디버그 문을 반드시 **주석 처리**해야 해요.

Go ahead and comment out the part that's causing errors so we can troubleshoot.

문제를 일으키는 부분을 **주석 처리**해서 확인해봅시다.

I usually comment out a block when I'm experimenting with new features.

새로운 기능을 실험할 때는 주로 블럭을 **주석 처리**해둡니다.

You don’t have to delete it—just comment out that line for now.

삭제할 필요 없으니 일단 그 줄만 **주석 처리**하세요.