Abstract Class:-Real Time Example

前端 未结 5 1870
遥遥无期
遥遥无期 2020-12-14 16:27

Recently in a interview I was asked a very general question \"what is abstract in java\".I gave the definition and it was followed with some other question on abstract as wh

5条回答
  •  离开以前
    2020-12-14 17:07

    The best example of an abstract class is GenericServlet. GenericServlet is the parent class of HttpServlet. It is an abstract class.

    When inheriting 'GenericServlet' in a custom servlet class, the service() method must be overridden.

提交回复
热议问题