/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/java/java-503-101-024/main.java
21 строка
625 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
public class ReportGenerator { private volatile ReportTemplate template; private ReportTemplate getTemplate() { ReportTemplate result = template; if (result == null) { synchronized (this) { result = template; if (result == null) { template = result = loadTemplate(); } } } return result; } private ReportTemplate loadTemplate() { // Загрузка шаблона из файла или базы данных return templateRepository.loadDefault(); } }