0

我理解指针(我认为),并且我知道 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]为 a 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 写东西是一年前,但我记得在处理字符时遇到了很多麻烦,我不知道为什么。我缺少什么明显的东西?

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

4

1 回答 1

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')
于 2013-09-23T06:48:47.667 回答