Friday, February 25, 2011

Final_DataTypes

//RULE:we can use the final keyword with DataTypes but values of variables are not modifies later

public class Final_DataTypes
{
public void testMethod()
{
final int x=10;
System.out.println("ok");
}
}