Switch to full style
JSP Code Examples
Post a reply

Abstract Classes in jsp

Fri Jan 09, 2009 5:09 pm

This code show you Abstract Classes in jsp ,it is so simple to understand:)
Code:
<HTML>
    <
HEAD>
        <
TITLE>Abstract Classes in jsp (Codemiles Example)</TITLE>
    </
HEAD>

    <
BODY>
        <
H1>Abstract Classes in jsp(Codemiles Example)</H1>

        <%!
 
              
//Define a abstract class
            
abstract class shape
            
{
          

                abstract public 
void printshape()  
                {
                    
localOut.println(getText());
                }
            }
           
//Extend the abstract class
            
class circle extends shape
            
{
                public 
void  printshape()  
                {
                   
out"Print circle here ");
                }
            }
        %>     
<%
              

            
circle mycircle = new circle();

            
mycircle.printshape();
        %>
    </
BODY>
</
HTML>

 




Post a reply
  Related Posts  to : Abstract Classes in jsp
 What is an Abstract Class? !!!     -  
 What is an abstract method     -  
 about classes     -  
 why cant instantiate an abstract class     -  
 make abstract class     -  
 how to Define abstract class in php     -  
 how do i create the classes XX and YY?     -  
 How to create and use classes in C++     -  
 The difference between an Interface and an Abstract class     -  
 instantiating java classes     -  

Topic Tags

Servlets/JSP