我偶然发现了这段代码,我想了解一下
args[0][0]-'!'
表示?
else if (args[0][0]-'!' ==0)
{ int x = args[0][1]- '0';
int z = args[0][2]- '0';
if(x>count) //second letter check
{
printf("\nNo Such Command in the history\n");
strcpy(inputBuffer,"Wrong command");
}
else if (z!=-48) //third letter check
{
printf("\nNo Such Command in the history. Enter <=!9 (buffer size is 10 along with current command)\n");
strcpy(inputBuffer,"Wrong command");
}
else
{
if(x==-15)//Checking for '!!',ascii value of '!' is 33.
{ strcpy(inputBuffer,history[0]); // this will be your 10 th(last) command
}
else if(x==0) //Checking for '!0'
{ printf("Enter proper command");
strcpy(inputBuffer,"Wrong command");
}
else if(x>=1) //Checking for '!n', n >=1
{
strcpy(inputBuffer,history[count-x]);
}
}
此代码来自此github帐户:https://github.com/deepakavs/Unix-shell-and-history-feature-C/blob/master/shell2.c
答案 0 :(得分:3)
args
是char**
,换句话说,是一个字符串数组(字符数组)。所以:
args[0] // first string in args
args[0][0] // first character of first string in args
args[0][0]-'!' // value of subtracting the character value of ! from
// the first character in the first string in args
args[0][0]-'!' == 0 // is said difference equal to zero
换句话说,它检查args
中的第一个字符串是否以!
字符开头。
它可以(并且可以说应该)被重写为
args[0][0] == '!'
以及(但不要使用这个):
**args == '!'
答案 1 :(得分:3)
'!'
只是一个数值的文本表示,它以指定的编码对感叹号进行编码。 args[0][0]
是数组第一个元素的第一个字符。
那么x - y == 0
时呢?在y
时移动x == y
,使代码等同于args[0][0] == '!'
。
我认为没有任何实际的理由将等效表达为示例中的减法。