2015-09-07 11:44:36 -06:00
|
|
|
// strings/UsingStringBuilder.java
|
2021-01-31 15:42:31 -07:00
|
|
|
// (c)2021 MindView LLC: see Copyright.txt
|
2015-11-15 15:51:35 -08:00
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
2016-09-23 13:23:35 -06:00
|
|
|
// Visit http://OnJava8.com for more book information.
|
2015-06-15 17:47:35 -07:00
|
|
|
import java.util.*;
|
2017-01-20 21:30:44 -08:00
|
|
|
import java.util.stream.*;
|
2015-06-15 17:47:35 -07:00
|
|
|
|
|
|
|
public class UsingStringBuilder {
|
2017-01-20 21:30:44 -08:00
|
|
|
public static String string1() {
|
|
|
|
Random rand = new Random(47);
|
2015-06-15 17:47:35 -07:00
|
|
|
StringBuilder result = new StringBuilder("[");
|
|
|
|
for(int i = 0; i < 25; i++) {
|
|
|
|
result.append(rand.nextInt(100));
|
|
|
|
result.append(", ");
|
|
|
|
}
|
|
|
|
result.delete(result.length()-2, result.length());
|
|
|
|
result.append("]");
|
|
|
|
return result.toString();
|
|
|
|
}
|
2017-01-20 21:30:44 -08:00
|
|
|
public static String string2() {
|
|
|
|
String result = new Random(47)
|
|
|
|
.ints(25, 0, 100)
|
|
|
|
.mapToObj(Integer::toString)
|
|
|
|
.collect(Collectors.joining(", "));
|
|
|
|
return "[" + result + "]";
|
|
|
|
}
|
2015-06-15 17:47:35 -07:00
|
|
|
public static void main(String[] args) {
|
2017-01-20 21:30:44 -08:00
|
|
|
System.out.println(string1());
|
|
|
|
System.out.println(string2());
|
2015-06-15 17:47:35 -07:00
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
}
|
|
|
|
/* Output:
|
2017-05-10 11:45:39 -06:00
|
|
|
[58, 55, 93, 61, 61, 29, 68, 0, 22, 7, 88, 28, 51, 89,
|
|
|
|
9, 78, 98, 61, 20, 58, 16, 40, 11, 22, 4]
|
|
|
|
[58, 55, 93, 61, 61, 29, 68, 0, 22, 7, 88, 28, 51, 89,
|
|
|
|
9, 78, 98, 61, 20, 58, 16, 40, 11, 22, 4]
|
2015-09-07 11:44:36 -06:00
|
|
|
*/
|