---
title: next命令
description: "执行当前行，跳到下一行代码（不进入函数内部）。"
url: https://www.hikunpeng.com/document/detail/zh/kunpengdevps/debugging/debugger/KunpengDevKitCli_0144.html
sourcePath: /source/zh/kunpengdevps/debugging/debugger/KunpengDevKitCli_0144.html
indexId: 85abe4342be2386d7db0681011860e26a8f2ca28d75002a4f15eb826286e78be69
---
# next命令

#### 命令功能

执行当前行，跳到下一行代码（不进入函数内部）。


#### 命令格式

```
next/n [-h | --help]
```

next命令可简写为n。


#### 参数说明


**表1 next命令参数**

| 参数 | 参数说明 |
| --- | --- |
| 无 | 执行当前行，跳到下一行代码。 |
| \-h/\-\-help | 可选参数，获取帮助信息。 |


#### 使用示例

执行以下命令，查看next支持的功能信息：

```
next -h
```

返回信息如下：

```
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
```
