/
Nicholas
/
java_basics
Обзор
Документация
Войти
/
Nicholas
/
java_basics
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Performance/CarNumberGenerator/src/Concatenation.java
13 строк
339 B
Skillbox
Add lesson
09 дек 2023, 10:28
09 дек 2023, 10:28
7389748
Код
Авторство
О чём код?
public class Concatenation { public static void main(String[] args) { long start = System.currentTimeMillis(); String str = ""; for (int i = 0; i < 20_000; i++) { str += "some text some text some text"; } System.out.println((System.currentTimeMillis() - start) + " ms"); } }