执行命令 X 次

问题描述 投票:0回答:7

如何多次执行一个命令?

例如这段代码

System.out.println("Hello World!");

我想运行它 500 次。我该怎么做?

java loops
7个回答
45
投票

使用 Java 8 Streams,你可以这样做

IntStream.range(0, 500).forEach(i -> System.out.println("Hello World!"));

16
投票

使用循环,

for(int i = 0; i < 500; ++i)
    System.out.println("Hello World!");

请阅读基本的 Java 教程。 可以在这里

找到一个

2
投票

尝试这样:

class ForDemo {
    public static void main(String[] args){
         for(int i=0; i<500; i++){
              System.out.println("Hello world");
         }
    }
}

2
投票

您将使用 for 循环。

for(int i = 0; i < 500; i++)
     //the code you would like to loop here

2
投票

试试这个

public static void main(String[] args){
     for(int j=0; j<500; j++){
          System.out.println("Hello world");
     }

1
投票
for(int x=0;x<500;x++){
     System.out.println("Hello World!");
}

您应该阅读有关控制结构的内容。它们是编程的基本构建块。


-1
投票

Java 11 中的新功能:

 String word = "Hi";
 System.out.println(word.repeat(5));
 
 // Output: HiHiHiHiHi
© www.soinside.com 2019 - 2024. All rights reserved.