C命令行参数

时间:2013-09-23 06:36:15

标签: c pointers character command-line-arguments

我理解指针(我认为),我知道C中的数组作为指针传递。我假设这也适用于main()中的命令行参数,但是对于我的生活,当我运行以下代码时,我无法对命令行参数进行简单的比较:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int numArgs, const char *args[]) {

    for (int i = 0; i < numArgs; i++) {
        printf("args[%d] = %s\n", i, args[i]);
    }

    if (numArgs != 5) {
        printf("Invalid number of arguments. Use the following command form:\n");
        printf("othello board_size start_player disc_color\n");
        printf("Where:\nboard_size is between 6 and 10 (inclusive)\nstart_player is 1 or 2\ndisc_color is 'B' (b) or 'W' (w)");
        return EXIT_FAILURE;
    }
    else if (strcmp(args[1], "othello") != 0) {
        printf("Please start the command using the keyword 'othello'");
        return EXIT_FAILURE;
    }
    else if (atoi(args[2]) < 6 || atoi(args[2]) > 10) {
        printf("board_size must be between 6 and 10");
        return EXIT_FAILURE;
    }
    else if (atoi(args[3]) < 1 || atoi(args[3]) > 2) {
        printf("start_player must be 1 or 2");
        return EXIT_FAILURE;
    }
    else if (args[4][0] != 'B' || args[4][0] != 'b' || args[4][0] != 'W' || args[4][0] != 'w') {
        printf("disc_color must be 'B', 'b', 'W', or 'w'");
        return EXIT_FAILURE;
    }

    return EXIT_SUCCESS;
}

使用以下参数:othello 8 0 B

除最后一项外,所有比较都有效 - 检查字符匹配。我尝试使用strcmp(),因为我在第二次比较中使用“B”,“b”(等)作为参数,但这不起作用。我还尝试将args[4][0]投射到char,但也没有效果。我尝试解除引用args[4],并尝试转换该值。

输出

args[0] = C:\Users\Chris\workspace\Othello\Release\Othello.exe
args[1] = othello
args[2] = 8
args[3] = 1
args[4] = B
disc_color must be 'B', 'b', 'W', or 'w'

我真的不明白发生了什么。上一次我在一年前用C语写了一些东西,但是我记得在操纵角色时遇到了很多麻烦,我不知道为什么。我错过了哪些显而易见的事情?

问题:如何将args[4]的值与字符进行比较(例如args [4]!='B' _ _ args [4] [0]!='B')。我只是有点失落。

1 个答案:

答案 0 :(得分:1)

您的代码

else if (args[4][0] != 'B' || args[4][0] != 'b' || args[4][0] != 'W' || args[4][0] != 'w')

将始终评估为TRUE - 它应该是

else if (args[4][0] != 'B' && args[4][0] != 'b' && args[4][0] != 'W' && args[4][0] != 'w')