Using Inheritance : Inheritance « JSP « Java






Using Inheritance


<HTML>
    <HEAD>
        <TITLE>Using Inheritance</TITLE>
    </HEAD>

    <BODY>
        <H1>Using Inheritance</H1>
        <%!
            javax.servlet.jsp.JspWriter localOut;

            class vehicle
            {
                public void start()  throws java.io.IOException
                {
                    localOut.println("Starting...<BR>");
                }
            }

            class automobile extends vehicle
            {
                public void drive() throws java.io.IOException 
                {
                    localOut.println("Driving...<BR>");
                }
            }
        %>     
        <%
            localOut = out;     

            out.println("Creating an automobile...<BR>");
            automobile a = new automobile();
            a.start();
            a.drive();
        %>
    </BODY>
</HTML>
           
       








Related examples in the same category

1.Working With Constructors and Inheritance