<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic interface and abstract class in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-and-abstract-class/m-p/5254420#M1213856</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you please tel me wt is the deference between interface and abstact class . &lt;/P&gt;&lt;P&gt;technicaly  , there seem to be no deference as there is no implementaion part in both cases .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards , &lt;/P&gt;&lt;P&gt;kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Feb 2009 08:16:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-20T08:16:05Z</dc:date>
    <item>
      <title>interface and abstract class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-and-abstract-class/m-p/5254420#M1213856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you please tel me wt is the deference between interface and abstact class . &lt;/P&gt;&lt;P&gt;technicaly  , there seem to be no deference as there is no implementaion part in both cases .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards , &lt;/P&gt;&lt;P&gt;kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 08:16:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-and-abstract-class/m-p/5254420#M1213856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T08:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: interface and abstract class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-and-abstract-class/m-p/5254421#M1213857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the link below where you have the exact difference between two:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://java.ittoolbox.com/groups/technical-functional/java-l/what-is-the-difference-between-interface-and-abstract-class-1536381" target="test_blank"&gt;http://java.ittoolbox.com/groups/technical-functional/java-l/what-is-the-difference-between-interface-and-abstract-class-1536381&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 08:44:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-and-abstract-class/m-p/5254421#M1213857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T08:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: interface and abstract class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-and-abstract-class/m-p/5254422#M1213858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Abstract classes sure do have implementation parts. Just double click on a method and you will be forwarded to the method implementation. However, you can not create an instance of these classes. These classes do have instance methods though, which can only be accessed after creating a subclass instance of this class. Good example are the RTTI classes CL_ABAP_TYPEDESCR and its subclasses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An interface is something totally different. It's true that these do not have an implementation part on their own. Interfaces can be used (implemented) by other classes. Per class, you can than double click on a method, and create your own implementation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 08:53:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-and-abstract-class/m-p/5254422#M1213858</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-02-20T08:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: interface and abstract class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-and-abstract-class/m-p/5254423#M1213859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abstract class : Will have atleast one method which is abtract. That means it can have some methods with implementation. If there is atleast one method without implementation, then that class will be an abtract calss. Also abtract classes cannot be instanciated. This means we cannot create the insatnce of an abtract class. Like- create object obj_name type ref to non_abstarct_calss.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interface : Will have only abtract methods. And the intrefaces can be instanciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keerthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 09:28:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-and-abstract-class/m-p/5254423#M1213859</guid>
      <dc:creator>keerthy_k</dc:creator>
      <dc:date>2009-02-20T09:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: interface and abstract class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-and-abstract-class/m-p/5254424#M1213860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i got cleared now . Thanks alot to all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 12:08:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-and-abstract-class/m-p/5254424#M1213860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T12:08:18Z</dc:date>
    </item>
  </channel>
</rss>

