如何使我的参数通过?
例如使用以下命令:
bin/a.out --num-cols 2 --num-rows 3
在我的launch.json中,我有:
{
"name": "(lldb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/a.out",
"args": ["--num-rows 8","--num-cols 12"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb"
}
调试遍历遍历了我的args。 有人可以帮我解决这个问题吗?谢谢