Submitted Questions

  • Why we need to create object for final class and what are its benefits?

    Ahmed reda

    • Jun 29th, 2015

    A final class cannot have any subclasses. This just means that nobody can create a subclass that modifies behaviour of the final class by modifying internal data or overriding methods so they behave d...

    Bimal Modak

    • Jan 14th, 2015

    We can create the object of final class and this will act like any simple object created for simple class."java public final class BlockTest { public void testMethod(){ S...