Java for 循环与 while 循环.性能差异?

编程入门 行业动态 更新时间:2024-10-25 07:29:20
本文介绍了Java for 循环与 while 循环.性能差异?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

假设我有以下代码,有三个 for 循环来做某事.如果我将最外层的 for 循环更改为 while 循环,它会运行得很快吗?谢谢~~

Assume i have the following code, there are three for loop to do something. Would it run fast if i change the most outer for loop to while loop? thanks~~

int length = 200; int test = 0; int[] input = new int[10]; for(int i = 1; i <= length; i++) { for (int j = 0; j <=length - i; j++) { for (int k = 0; k < length - 1; k++) { test = test + input[j + k]; } } }

推荐答案

不,改变循环类型无关紧要.

No, changing the type of loop wouldn't matter.

唯一可以使它更快的方法是减少循环嵌套,并减少循环的值.

The only thing that can make it faster would be to have less nesting of loops, and looping over less values.

for 循环和 while 循环之间的唯一区别是定义它们的语法.完全没有性能差异.

The only difference between a for loop and a while loop is the syntax for defining them. There is no performance difference at all.

int i = 0; while (i < 20){ // do stuff i++; }

等同于:

for (int i = 0; i < 20; i++){ // do Stuff }

(实际上 for 循环要好一点,因为 i 将在循环后超出范围,而 i 将留在 while 循环案例.)

(Actually the for-loop is a little better because the i will be out of scope after the loop while the i will stick around in the while loop case.)

for 循环只是一种语法上更漂亮的循环方式.

A for loop is just a syntactically prettier way of looping.

更多推荐

Java for 循环与 while 循环.性能差异?

本文发布于:2023-10-16 06:00:10,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1496696.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:差异   性能   Java

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!