/
esoe
/
jcore
Обзор
Документация
Войти
/
esoe
/
jcore
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
identifiers/src/App.java
37 строк
1021 B
esoe
Объявления и контроль доступа
09 сен 2025, 14:57
09 сен 2025, 14:57
c430a09
Код
Авторство
О чём код?
/** * Identifiers must start with: * - a letter, * - a currency character ( $ ), * - or a connecting character such as the underscore ( _ ). * Identifiers cannot start with a digit! */ public class App { //correct int a; int $a; int _a; int _$; int a2; int a_b_c_d; // int :b; // int -d; // int e#; // int .f; // int 7g; public static void main(String[] args) throws Exception { System.out.println("Hello, World!"); } } // ключевые слова // abstract boolean break byte case catch // char class const continue default do // double else extends final finally float // for goto if implements import instanceof // int interface long native new package // private protected public return short static // strictfp super switch synchronized this throw // throws transient try void volatile while // assert enum