Fri Jan 09, 2009 5:09 pm
<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>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.