Source Code : Using Superclass Variables With Subclassed Objects

Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com. Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com. Click Here or search from google with Libraries Name you get jar file related it

Using Superclass Variables With Subclassed Objects

<HTML>
    <HEAD>
        <TITLE>Using Superclass Variables With Subclassed Objects</TITLE>
    </HEAD>

    <BODY>
        <H1>Using Superclass Variables With Subclassed Objects</H1>

        <%!
            javax.servlet.jsp.JspWriter localOut;

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

            class aircraft extends vehicle
            {
                public void fly() throws java.io.IOException 
                {
                    localOut.println("Flying...<BR>");
                }
            }

            class plane extends aircraft
            {
                public void fly() throws java.io.IOException 
                {
                    localOut.println("Flying...<BR>");
                }
            }
        %>     
        <%
            localOut = out;     

            out.println();
            out.println("Creating a plane object...<BR>");
            vehicle p = new plane();
            p.start();
        %>
    </BODY>
</HTML>

           
       

Thank with us