gpt4 book ai didi

java - 如何优化这个功能?

转载 作者:行者123 更新时间:2023-12-01 16:32:54 24 4
gpt4 key购买 nike

如何尽可能优化这个功能

public void r1(String st1, int[] ar1) {
String inox = "newsearch";
for (int j = 0; j < ar1.length; j++) {
if (st1.equals(inox) && ar1[j] * 2 > 20) {
Integer intx = new Integer(ar1[j]);
intx = intx * 2;
System.out.print(intx.toString());
}
}
}

最佳答案

这是相当奇怪的代码,但它是相同的。

public void r1(String st1, int[] ar1) {
if (!str1.equals("newsearch")) return;

for (int j : ar1) {
int j2 = j * 2;
if (j2 > 20)
System.out.print(j2);
}
}

关于java - 如何优化这个功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12605202/

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