What is final class

Showing Answers 1 - 8 of 8 Answers

Madhu

  • Jun 14th, 2005
 

A class which cannot be extended. This type of class is known as final class. To identified this, specify a final keyword before the class.

Britto

  • Jul 10th, 2005
 

A class which cannot be inherited by any other class is called a final class.

Bhavik Trivedi

  • Jul 11th, 2005
 

Final Class is a class which can not be inherited.

  Was this answer useful?  Yes

tanuja

  • Aug 9th, 2005
 

final classes are used to when we want to fix the value or method that cannot be changed

  Was this answer useful?  Yes

Ratan Kumar Mishra

  • Sep 21st, 2005
 

Final class is a class which can not be inherit.

  Was this answer useful?  Yes

Tafazzul hasan

  • Feb 21st, 2007
 


If we declare a Class as Final. No Other class can extend this class.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions