Java final variable

If you make any variable as final, you cannot change the value of final variable(It will be constant). There is a final variable speedlimit, we are going to change the value of this variable, but It can't be changed because final variable once assigned a value can never be changed.


\begin{lstlisting}
class Bike9{
final int speedlimit=90;//final variable
voi...
...]){
Bike9 obj=new Bike9();
obj.run();
}
}//end of class
\end{lstlisting}

The output for the anove snippet is Compile Time Error.