Java/ J2EE, Oracle Adf Blog
Thursday, 12 February 2015
Final Variable
class
Bike9{
final
int
speedlimit=
90
;
//final variable
void
run(){
speedlimit=
400
;
}
public
static
void
main(String args[]){
Bike9 obj=
new
Bike9();
obj.run();
}
}
//end
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment