gpt4 book ai didi

bash - 为什么 ((count++)) 第一次运行返回 1 退出代码

转载 作者:行者123 更新时间:2023-11-29 08:54:41 25 4
gpt4 key购买 nike

我不知道为什么下面指示的行返回 1 而 ((count++)) 的后续执行返回 0。

[me@server ~]$ count=0
[me@server ~]$ echo $?
0
[me@server ~]$ count++
-bash: count++: command not found
[me@server ~]$ (count++)
-bash: count++: command not found
[me@server ~]$ ((count++))
[me@server ~]$ echo $?
1 <------THIS WHY IS IT 1 AND NOT 0??
[me@server ~]$ ((count++))
[me@server ~]$ echo $?
0
[me@server ~]$ ((count++))
[me@server ~]$ echo $?
0
[me@server ~]$ echo $count
3

最佳答案

请参阅help let 页面的摘录

If the last ARG evaluates to 0, let returns 1; 0 is returned otherwise.

由于操作是后递增,((count++)),第一次保留0,因此返回1

请注意,预增量 ((++count)) 不会发生同样的情况,因为在第一次迭代时该值设置为 1

$ unset count
$ count=0
$ echo $?
0
$ ++count
-bash: ++count: command not found
$ echo $?
127
$ ((++count))
$ echo $?
0

关于bash - 为什么 ((count++)) 第一次运行返回 1 退出代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41349109/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com