如何正确地调用函数的getopt(How to call correctly getopt func

2019-07-29 08:01发布

错误同时呼吁从int getopt的功能http://code.google.com/p/darungrim/source/browse/trunk/ExtLib/XGetopt.cpp?r=17

`check.cpp: In function ‘int main()’:`

check.cpp:14:55: error: invalid conversion from ‘const char**’ to ‘char* const*’ [-fpermissive]

/usr/include/getopt.h:152:12: error: initializing argument 2 of ‘int getopt(int, char* const*, const char*)’ [-fpermissive]

#include <iostream>
#include <cstring>
#include <string>
#ifdef USE_UNISTD
#include <unistd.h>
#else
#include "XGetopt.h"
#endif
using namespace std;

int main() {

string text="-f  input.gmn -output.jpg";
int argc=text.length();
cout<<"argc: "<<argc<<endl;
char const * argv = text.c_str();
cout<<"argv: "<<argv<<endl;
int c = getopt (argc, &argv, "f:s:o:pw:h:z:t:d:a:b:?");
cout<<"c: "<<c<<endl;
return 0;
}

Answer 1:

您在这里失踪两件事情:

  1. 参数列表不是一个字符串。 这是一个字符串列表。 不要通过壳或要求一个字符串参数列表中的其他程序混乱。 在一天结束时,这些方案将分割字符串插入的参数的阵列和运行的可执行(参见execv ,例如)。
  2. 总是有参数列表中一个隐含的第一个参数是程序名称。

这里是你的代码,固定:

#include <string>
#include <iostream>
#include <unistd.h>

int main()
{
    const char *argv[] = { "ProgramNameHere",
                           "-f", "input.gmn", "-output.jpg" };
    int argc = sizeof(argv) / sizeof(argv[0]);
    std::cout << "argc: " << argc << std::endl;
    for (int i = 0; i < argc; ++i)
        std::cout << "argv: "<< argv[i] << std::endl;
    int c;

    while ((c = getopt(argc, (char **)argv, "f:s:o:pw:h:z:t:d:a:b:?")) != -1) {
        std::cout << "Option: " << (char)c;
        if (optarg)
            std::cout << ", argument: " << optarg;
        std::cout << '\n';
    }
}


文章来源: How to call correctly getopt function
标签: c++ argv getopt