fork download
  1.  
  2. class Final {
  3.  
  4. public static void main(String[] args) {
  5. final double LICZBA_PI=3.14;
  6. final int STALA2;
  7. LICZBA_PI=8; //błąd, zmienna była zainicjowana
  8. STALA2=3; // tak można zrobić - pierwsze przypisanie
  9. }
  10. }
  11.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:7: error: cannot assign a value to final variable LICZBA_PI
	    LICZBA_PI=8;     //b??d, zmienna by?a zainicjowana
	    ^
1 error
stdout
Standard output is empty