将负数传递给Getopt

时间:2015-11-02 01:40:25

标签: c++ getopt negative-number

我需要将负数传递给getopt,我想知道是否有一种简单的方法可以将getopt使用的前缀(即' - '字符在case语句中标记)更改为不同的字符,如' - '或'+'。

我是否需要使用Getopt :: Long来更改前缀?

2 个答案:

答案 0 :(得分:0)

我不相信有一种方法可以将命令行参数前缀更改为-以外的任何内容(或--时使用getopt_long())。但是,如果您需要传递负数,则应将参数定义为' required_argument'。例如,这是一个使用getopt_long_only方法获取命令行参数的简短GetOpt方法:

// personaldetails.cpp

// compile with:
// g++ -std=c++11 personaldetails.cpp -o personaldetails
#include <iostream>
#include <string>
#include <vector>
#include <getopt.h>

int main (int argc, char** argv)
{
    // Define some variables
    std::string name = "" ;
    int age = 0 ;
    double weight = 0.0 ;

    // Setup the GetOpt long options.
    std::vector<struct option> longopts ;
    longopts.push_back({"Name",  required_argument, 0, 'N'}) ; 
    longopts.push_back({"Age",   required_argument, 0, 'A'}) ; // <- IMPORTANT
    longopts.push_back({"Weight",required_argument, 0, 'W'}) ; // <- IMPORTANT
    longopts.push_back({0,0,0,0}) ;

    // Now parse the options
    while (1)
    {
        int c(0) ;
        int option_index = -1;

        c = getopt_long_only (argc, argv, "A:N:W:",
                              &longopts[0], &option_index);

        /* Detect the end of the options. */
        if (c == -1) break;

        // Now loop through all of the options to fill them based on their values
        switch (c)
        {
            case 0:
                /* If this option set a flag, do nothing else now. */
                break ;
            case '?':
                // getopt_long_omly already printed an error message.
                // This will most typically happen when then an unrecognized
                // option has been passed.
                return 0 ;
            case 'N':
                name = std::string(optarg) ;
                break ;
            case 'A':
                age = std::stoi(optarg) ;
                break ;
            case 'W':
                weight = std::stod(optarg) ;
                break ;
            default:
                // Here's where we handle the long form arguments
                std::string opt_name( longopts[option_index].name ) ;
                if (opt_name.compare("Name")==0) {
                    name = std::string(optarg) ;
                } else if (opt_name.compare("Age")==0) {
                    age = std::stoi(optarg) ;
                } else if (opt_name.compare("Weight")==0) {
                    weight = std::stod(optarg) ;
                }
                break ;
        }
    }

    // Print the persons details
    std::cout << "Name  : " << name << std::endl;
    std::cout << "Age   : " << age << std::endl;
    std::cout << "Weight: " << weight << std::endl;

    return 0 ;
}

这里的关键部分是longopts我已经设置了我要转换为整数的参数,并且设置了required_argument的双倍参数。这会在您在命令行上声明之后告诉GetOpt expect 另一个参数。这意味着GetOpt将在命令行参数之后读入参数作为参数到该命令行参数。对于我们想要传递单个char参数(即-N-A-W)的情况,这是将"N:A:W:"传递给getopt的地方重要。 :基本上对单个char参数执行相同的操作,因为required_argument对于长形式。

运行我可以执行的脚本:

$ ./personaldetails -Name Sally -Age -45 -Weight 34.5
Name  : Sally
Age   : -45
Weight: 34.5

$./personaldetails -N Sally -A -45 -W -34.5
Name  : Sally
Age   : -45
Weight: -34.5

请注意,因为脚本使用getopt_long_only(),所以我可以使用单个-传递长参数参数。

答案 1 :(得分:0)

使用-- 例如yourcommand -- -5 可以解决问题。