next命令
命令功能
执行当前行,跳到下一行代码(不进入函数内部)。
命令格式
1 | next/n [-h | --help] |

next命令可简写为n。
使用示例
执行以下命令,查看next支持的功能信息:
1 | next -h
|
返回信息如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | OVERVIEW Run this command to execute the current line and jumps to the next line of code (without entering the function). USAGE next/n [-h | --help] OPTIONS -h, --help Get help information. EXAMPLE # Executes the current line and jumps to the next line of code (without entering the function). next |
父主题: 调试动作命令