<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: What is an abstract class?</title>
	<atom:link href="http://javapapers.com/core-java/abstract-and-interface-core-java-2/what-is-an-abstract-class/feed/" rel="self" type="application/rss+xml" />
	<link>http://javapapers.com/core-java/abstract-and-interface-core-java-2/what-is-an-abstract-class/</link>
	<description>Blog on core java, servlets, jsp and design patterns.</description>
	<lastBuildDate>Mon, 04 Jun 2012 02:04:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Sharat</title>
		<link>http://javapapers.com/core-java/abstract-and-interface-core-java-2/what-is-an-abstract-class/#comment-10482</link>
		<dc:creator>Sharat</dc:creator>
		<pubDate>Thu, 08 Mar 2012 12:59:13 +0000</pubDate>
		<guid isPermaLink="false">http://javapapers.com/core-java-interview-questions/abstract-and-interface-core-java-interview-questions/what-is-an-abstract-class/#comment-10482</guid>
		<description>Hi Joe,
Initially you said[first sentance of this topic], an abstract class should have atleast one abstract method. This is wrong know? It can have only instance methods as you mentioned at last.

Thanks,
Sharat</description>
		<content:encoded><![CDATA[<p>Hi Joe,<br />
Initially you said[first sentance of this topic], an abstract class should have atleast one abstract method. This is wrong know? It can have only instance methods as you mentioned at last.</p>
<p>Thanks,<br />
Sharat</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: danish</title>
		<link>http://javapapers.com/core-java/abstract-and-interface-core-java-2/what-is-an-abstract-class/#comment-6931</link>
		<dc:creator>danish</dc:creator>
		<pubDate>Wed, 10 Aug 2011 07:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://javapapers.com/core-java-interview-questions/abstract-and-interface-core-java-interview-questions/what-is-an-abstract-class/#comment-6931</guid>
		<description>public abstract class AAA
{
 // Nothing inside
}
This compiles absolutely fine. 
Found a list of Abstract Class FAQ:
- Must abstract classes contain at least one abstract method?
- Can a static method be abstract?
- Why can’t an abstract method be declared private?
Q:How can I declare a constructor for an abstract class?


http://techguru.yakkoo.com/programming-concept-tutorials/2011/08/what-is-an-abstract-class-complete-reference/</description>
		<content:encoded><![CDATA[<p>public abstract class AAA<br />
{<br />
 // Nothing inside<br />
}<br />
This compiles absolutely fine.<br />
Found a list of Abstract Class FAQ:<br />
- Must abstract classes contain at least one abstract method?<br />
- Can a static method be abstract?<br />
- Why can’t an abstract method be declared private?<br />
Q:How can I declare a constructor for an abstract class?</p>
<p><a href="http://techguru.yakkoo.com/programming-concept-tutorials/2011/08/what-is-an-abstract-class-complete-reference/" rel="nofollow">http://techguru.yakkoo.com/programming-concept-tutorials/2011/08/what-is-an-abstract-class-complete-reference/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bibhudutta Pradhan.</title>
		<link>http://javapapers.com/core-java/abstract-and-interface-core-java-2/what-is-an-abstract-class/#comment-4197</link>
		<dc:creator>Bibhudutta Pradhan.</dc:creator>
		<pubDate>Sat, 02 Apr 2011 16:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://javapapers.com/core-java-interview-questions/abstract-and-interface-core-java-interview-questions/what-is-an-abstract-class/#comment-4197</guid>
		<description>An abstract class may or may not have abstract methods.

public abstract class AAA
{
}</description>
		<content:encoded><![CDATA[<p>An abstract class may or may not have abstract methods.</p>
<p>public abstract class AAA<br />
{<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://javapapers.com/core-java/abstract-and-interface-core-java-2/what-is-an-abstract-class/#comment-4196</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 02 Apr 2011 16:06:40 +0000</pubDate>
		<guid isPermaLink="false">http://javapapers.com/core-java-interview-questions/abstract-and-interface-core-java-interview-questions/what-is-an-abstract-class/#comment-4196</guid>
		<description>An abstract class may or may not have abstract methods.

public abstract class AAA
{
}

Bibhudutta Pradhan.</description>
		<content:encoded><![CDATA[<p>An abstract class may or may not have abstract methods.</p>
<p>public abstract class AAA<br />
{<br />
}</p>
<p>Bibhudutta Pradhan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gaurav prajapati</title>
		<link>http://javapapers.com/core-java/abstract-and-interface-core-java-2/what-is-an-abstract-class/#comment-2818</link>
		<dc:creator>gaurav prajapati</dc:creator>
		<pubDate>Wed, 22 Dec 2010 14:18:09 +0000</pubDate>
		<guid isPermaLink="false">http://javapapers.com/core-java-interview-questions/abstract-and-interface-core-java-interview-questions/what-is-an-abstract-class/#comment-2818</guid>
		<description>An abstract class is simple a class which cant be instantiated.
An abstract method defined within an abstract class must be implemented by all of its subclass.
Abstract method cannot be instantiated,it is generally used for inherited.</description>
		<content:encoded><![CDATA[<p>An abstract class is simple a class which cant be instantiated.<br />
An abstract method defined within an abstract class must be implemented by all of its subclass.<br />
Abstract method cannot be instantiated,it is generally used for inherited.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ankitagahoi</title>
		<link>http://javapapers.com/core-java/abstract-and-interface-core-java-2/what-is-an-abstract-class/#comment-2701</link>
		<dc:creator>ankitagahoi</dc:creator>
		<pubDate>Sat, 04 Dec 2010 19:14:21 +0000</pubDate>
		<guid isPermaLink="false">http://javapapers.com/core-java-interview-questions/abstract-and-interface-core-java-interview-questions/what-is-an-abstract-class/#comment-2701</guid>
		<description>can abstract class have constructor ?</description>
		<content:encoded><![CDATA[<p>can abstract class have constructor ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

