如何多次执行一个命令?
例如这段代码
System.out.println("Hello World!");
我想运行它 500 次。我该怎么做?
使用 Java 8 Streams,你可以这样做
IntStream.range(0, 500).forEach(i -> System.out.println("Hello World!"));
尝试这样:
class ForDemo {
public static void main(String[] args){
for(int i=0; i<500; i++){
System.out.println("Hello world");
}
}
}
您将使用 for 循环。
for(int i = 0; i < 500; i++)
//the code you would like to loop here
试试这个
public static void main(String[] args){
for(int j=0; j<500; j++){
System.out.println("Hello world");
}
for(int x=0;x<500;x++){
System.out.println("Hello World!");
}
您应该阅读有关控制结构的内容。它们是编程的基本构建块。
Java 11 中的新功能:
String word = "Hi";
System.out.println(word.repeat(5));
// Output: HiHiHiHiHi