/
anton.buldygin
/
Contacts_Java
Обзор
Документация
Войти
/
anton.buldygin
/
Contacts_Java
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Topics/Enumset/Error/task.html
10 строк
349 B
AntonBuldygin
Initial commit
19 дек 2023, 15:38
19 дек 2023, 15:38
bed9366
Код
Авторство
О чём код?
<h2>Error</h2> <div class="step-text"> <p></p> <p>Consider the following code:</p> <pre><code class="language-java">enum Sections { DAISY, LOTUS, TULIP, ROSE } EnumSet<Sections> enumSet = EnumSet.of(Sections.DAISY, Sections.LOTUS, Sections.SUNFLOWER); // 1</code></pre> <p>Will line comment 1 throw an error? If yes, what type?</p> </div>