vscode调试使用断点
| 断电类型 | 描述 | 
|---|---|
| Breakpoint | 常规断点,遇到即断 | 
| Conditional Breakpoint | 表达式断点,满足才断 | 
| Hit Count Breakpoint | 命中断点指定次数才断,比如 =5,>=9 | 
| Triggered Breakpoint | 触发断点,指定另一个断点作为触发器 | 
| logpoint | 日志点,可打印变量值(使用花括号,在 Debugger console 中查看。) | 
    有了计划记得推动,不要原地踏步。
| 断电类型 | 描述 | 
|---|---|
| Breakpoint | 常规断点,遇到即断 | 
| Conditional Breakpoint | 表达式断点,满足才断 | 
| Hit Count Breakpoint | 命中断点指定次数才断,比如 =5,>=9 | 
| Triggered Breakpoint | 触发断点,指定另一个断点作为触发器 | 
| logpoint | 日志点,可打印变量值(使用花括号,在 Debugger console 中查看。) |