Final Keyword in Java
Final Keyword in Java
com
http://www.javatpoint.com/final-keyword
speedlimit=400;
5. }
6. public static void main(String args[]){
7. Bike9 obj=new Bike9();
8. obj.run();
9. }
10. }
1/4
Test it Now
Output:Compile Time Error
3. }
4. class Honda extends Bike{
5.
6.
7.
8.
honda.run();
9.
10. }
Test it Now
Output:Compile Time Error
4.
5.
6.
honda.run();
7.
8. }
Test it Now
Output:Compile Time Error
3. }
4. class Honda2 extends Bike{
2/4
5.
6.
new Honda2().run();
7.
8. }
Test it Now
Output:running...
3.
Bike10(){
4.
speedlimit=70;
5.
System.out.println(speedlimit);
6.
7.
8.
new Bike10();
9. }
10. }
Test it Now
Output:70
3/4
2.
3.
static{ data=50;}
4.
5.
System.out.println(A.data);
6. }
7. }
3.
n=n+2;
4.
n*n*n;
5.
6.
7.
8.
b.cube(5);
9. }
10. }
Test it Now
Output:Compile Time Error
4/4