49. final class - can not be extanded
//final class - can not be extanded
// final class modifier
final class test
{
void show()
{
System.out.println("Show method of final class test is called ");
}
}
/*
class child extends test
{
THIS IS NOT POSSIBLE IN FINAL CLASS
}
*/
class final_class
{
public static void main(String[] args) {
test obj = new test();
obj.show();
}
}
OUTPUT:
Show method of final class test is called
Comments
Post a Comment