gpt4 book ai didi

c++ - 使用ideone时如何传入命令行参数?

转载 作者:IT老高 更新时间:2023-10-28 22:58:58 24 4
gpt4 key购买 nike

我正在使用 ideone 在线解释器 (http://ideone.com/) 来测试一些 C++ 和 Python 程序。如何指定命令行参数而不是使用 STDIN 输入?

最佳答案

看起来你不能,但是快速破解应该可以解决问题:

static char * const ARGV[] = { "myprog", "hello", "world", NULL };

int main(int argc, char * argv[])
{
argc = 3;
argv = ARGV;

// ...
}

或者将标准输入转换成args:

#include <vector>
#include <string>
#include <iterator>
#include <iostream>

std::vector<char *> fabricate(std::vector<std::string> & v)
{
std::vector<char *> res(v.size() + 1, NULL);
for (std::size_t i = 0; i != v.size(); ++i) { res[i] = &v[i][0]; }
return res;
}

std::vector<std::string> args_vector((std::istream_iterator<std::string>(std::cin)), std::istream_iterator<std::string>());

std::vector<char *> argv_vector = fabricate(args_vector);


int main(int argc, char * argv[])
{
argc = args_vector.size();
argv = argv_vector.data();

// ...
}

关于c++ - 使用ideone时如何传入命令行参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12258317/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com