Java 中“while (n-->0)” 和 “while (n! =0)”区别
“While(n- ->0)” 使用后缀递减运算符
在“while()”块中可以或不能有更新语句,因为每次循环运行时都会获取“n”,例子如下
1 | int n = 4; |
results:
1 | 3 |
“while(n!=0)”使用关系运算符。
1 | int n = 4; |
1 | 4 |
注意当我们比较两者的时候:
- “While(n- ->0)” 是从 n-1 到 0
- while(n!=0) 是从n 到1
测试代码如下
1 | public static void main(String[] args) { |
- Post title:Java 中“while (n-->0)” 和 “while (n! =0)”区别
- Post author:Yuxuan Wu
- Create time:2021-06-29 06:42:23
- Post link:yuxuanwu17.github.io2021/06/29/2021-06-29-Java-中“while-(n--0)”-和-“while-(n!-=0)”区别/
- Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.