Java里如何将一个字符串重复n次

时间:2024-03-12 12:09:31

程序:

import java.util.Collections;

public class Test {
    public static void main(String[] args) {
        System.out.println(createRepeatedStr("****",3));
    }
    
    // Repeat seed with n times
    private static String createRepeatedStr(String seed,int n) {
        return String.join("", Collections.nCopies(n, seed));
    }
}

 

效果:

************

--END--2019年11月24日20:02:08