“Окончательная переменная Java” Ответ

Что это значит, когда создать окончательную переменную в Java

First of all, final is a non-access modifier applicable only to 
a variable, a method or a class

When a variable is declared with final keyword, its value can’t be modified, 
essentially, a constant. This also means that you must initialize a 
final variable. If the final variable is a reference, this means that 
the variable cannot be re-bound to reference another object, but internal 
state of the object pointed by that reference variable can be changed 
i.e. you can add or remove elements from final array or final collection. 
  It is good practice to represent final variables in all uppercase, using 
  underscore to separate words.
Kamran Taghaddos

Окончательная переменная Java

class Main {
  public static void main(String[] args) {

    // create a final variable
    final int AGE = 32;

    // try to change the final variable
    AGE = 45;
    System.out.println("Age: " + AGE);
  }
}
SAMER SAEID

Ответы похожие на “Окончательная переменная Java”

Вопросы похожие на “Окончательная переменная Java”

Больше похожих ответов на “Окончательная переменная Java” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования