-
Debugging (continue, step over, step into restart 의미)코딩Coding/Rust_Debugger_heap_memory_check 2023. 2. 21. 21:37728x90
https://junha1125.tistory.com/37
[python] Visual Studio code로 phthon Debugging/ run python file 단축키 만들기
이 동영상을 보고 공부한 내용을 간단하게 정리해 봅니다. (https://www.youtube.com/watch?v=w8QHoVam1-I&t=3s) 1. F5 F5를 눌러 디버깅을 시작할 수 있다. 이때 ctrl+F5를 누루면, start with debugging이므로, 디버깅을
junha1125.tistory.com
continue : 다음 break point를 만날때까지 코드를 진행해 나간다.
step over : 한 Line씩 코드를 읽어 나간다. 외부 함수를 만나면 그 함수 내부로 들어가며 디버깅하지 않는다.
step into : 한 Line씩 코드를 읽어 나간다. 외부 함수를 만나면 그 함수 내부로 들어가며 디버깅을 한다.
restart : 전체 코드를 처음부터 다시 디버깅 한다.
반응형'코딩Coding > Rust_Debugger_heap_memory_check' 카테고리의 다른 글
스택/힙 메모리 생성과 소멸(1/2) : 개발자라면 이 정도는 알아야 (0) 2023.04.02 objdump를 이용하여 C언어 Disassemble하기 - 네이버 블로그 (0) 2023.03.17 Why does this Rust program leak memory? (0) 2023.02.25 디버깅DebuggingVimspectorInstall --all --force-all 사용법 (0) 2023.02.22 Rust❤️matt-kimball / allocscope: allocscope - a memory tracking tool ★373 (0) 2023.02.18 Rust❤️uutils / coreutils: Cross-platform Rust rewrite of the GNU coreutils ★13097 (0) 2023.02.07 Tracy Profiler💕A real time, nanosecond resolution, remote telemetry, hybrid frame and sampling profiler for games and other applications. (0) 2023.02.03 MIT❤️9. What Compilers Can and Cannot Do (0) 2023.02.01