# process.get_args ## 功能 读取当前构建器已配置的参数数组。 ## 语法 ```bt process(program).get_args() ``` ## 参数 无参数。 ## 返回值 | 类型 | 说明 | | ------ | ------ | | Array | 返回参数字符串数组。 | ## 示例 ```bt cmd = process('cmd').args(['/C', 'echo BT']) result = cmd.get_args() // 输出:["/C","echo BT"] print result ``` ## 注意事项 - 返回数组是当前参数快照。