JSP: Utilisation de l’héritage en jsp

Author:
 
<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>
           
       

Cet article JSP: Utilisation de l’héritage en jsp est apparu en premier sur .