<?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 Re: Constructor and Class constructor in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063794#M971432</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In what case we are using constructors??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Arun Joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jul 2008 06:27:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-09T06:27:49Z</dc:date>
    <item>
      <title>Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063785#M971423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one explain me the functionality about Constructor and class constructor??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;As well as normal methods, which you call using CALL METHOD, there are two special methods
called CONSTRUCTOR and CLASS_CONSTRUCTOR, which are automatically called when you
create an object (CONSTRUCTOR) or when you first access the components of a class
(CLASS_CONSTRUCTOR) &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have read the above mentioned document from SAP Documents but i found it bit difficult to understand can any one please help me on this??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Arun Joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 03:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063785#M971423</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T03:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063786#M971424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 03:49:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063786#M971424</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T03:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063787#M971425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiii!&lt;/P&gt;&lt;P&gt;  Instance Constructor = The constructor is a special instance method in a class and is always named CONSTRUCTOR.&lt;/P&gt;&lt;P&gt;The constructor is automatically called at runtime with CREATE OBJECT statement.&lt;/P&gt;&lt;P&gt;  Some Important points about constructor:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Each class can have only one constructor.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The constructor must be defined in PUBLIC SECTION.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The constructor's signature can have only importing parameters and exceptions.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;When exceptions are raised in the constructor, instances are not created so no main memory is occupied.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Static Constructor = This is a special static method in a class and is always names CLASS_CONSTRUCTOR. It is executed once per program. This constructor is called automatically before the class is first accessed, but before any of the following actions are executed for the first time:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Creating instance of this class(CREATE OBJECT)&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Accessing a static attribute of this class.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Calling a static method of this class.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Registering an event handler method for an event in this class.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Some important points:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Each class has only one static constructor&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This constructor must be defined in PUBLIC SECTION.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The constructor's signature cannot have importing   parameters or exceptions.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The static constructor cannot be called explicitly&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Abhijeet Kulshreshtha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Abhijeet Kulshreshtha on Jul 9, 2008 6:16 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 03:52:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063787#M971425</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T03:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063788#M971426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey!&lt;/P&gt;&lt;P&gt;  Thanks Joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 04:26:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063788#M971426</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T04:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063789#M971427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Constructor&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implicitly, each class has an instance constructor method with the reserved name constructor and a static constructor method with the reserved name class_constructor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The instance constructor is executed each time you create an object (instance) with the CREATE OBJECT statement, while the class constructor is executed exactly once before you first access a class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The constructors are always present. However, to implement a constructor you must declare it explicitly with the METHODS or CLASS-METHODS statements. An instance constructor can have IMPORTING parameters and exceptions. You must pass all non-optional parameters when creating an object. Static constructors have no parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Class Constructor&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The static constructor is always called CLASS_CONSTRUCTER, and is called autmatically before the clas is first accessed, that is before any of the following actions are executed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Creating an instance using CREATE_OBJECT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adressing a static attribute using -&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calling a ststic attribute using CALL METHOD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Registering a static event handler&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Registering an evetm handler method for a static event&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The static constructor cannot be called explicitly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For better understanding check the following code:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  z_constructor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS cl1 DEFINITION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS cl1 DEFINITION.&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    METHODS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      add,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      constructor IMPORTING v1 TYPE i&lt;/P&gt;&lt;P&gt;                            v2 TYPE i,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CLASS-METHODS:&lt;/P&gt;&lt;P&gt;     class_constructor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PRIVATE SECTION.&lt;/P&gt;&lt;P&gt;    DATA:&lt;/P&gt;&lt;P&gt;    w_var1   TYPE i,&lt;/P&gt;&lt;P&gt;    w_var2   TYPE i,&lt;/P&gt;&lt;P&gt;    w_var3   TYPE i,&lt;/P&gt;&lt;P&gt;    w_result TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "cl1 DEFINITION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS cl1 IMPLEMENTATION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS cl1 IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD constructor.&lt;/P&gt;&lt;P&gt;    w_var1 = v1.&lt;/P&gt;&lt;P&gt;    w_var2 = v2.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "constructor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD class_constructor.&lt;/P&gt;&lt;P&gt;    WRITE:&lt;/P&gt;&lt;P&gt;    / 'Tihs is a class or static constructor.'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "class_constructor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD add.&lt;/P&gt;&lt;P&gt;    w_result = w_var1 + w_var2.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "add&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD display.&lt;/P&gt;&lt;P&gt;    WRITE:&lt;/P&gt;&lt;P&gt;    /'The result is =  ',w_result.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;" Main program----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;  ref1 type ref to cl1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters:&lt;/P&gt;&lt;P&gt;  w_var1 type i,&lt;/P&gt;&lt;P&gt;  w_var2 type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  create object ref1 exporting v1 = w_var1&lt;/P&gt;&lt;P&gt;                              v2 = w_var2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   ref1-&amp;gt;add( ).&lt;/P&gt;&lt;P&gt;   ref1-&amp;gt;d isplay( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anirban Bhattacharjee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 04:31:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063789#M971427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T04:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063790#M971428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one let me know what is the difference between constructor and methods??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Arun Joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 04:31:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063790#M971428</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T04:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063791#M971429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A &lt;STRONG&gt;constructor&lt;/STRONG&gt; is a member function of a class that is used to create objects of that class. It is alway named as &lt;EM&gt;constructor&lt;/EM&gt;, has no return type, and is invoked using the new operator.&lt;/P&gt;&lt;P&gt; A &lt;STRONG&gt;method&lt;/STRONG&gt; is an ordinary member function of a class. It has its own name, a return type (which may be void), and is invoked using the dot operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anirban Bhattacharjee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 04:34:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063791#M971429</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T04:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063792#M971430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u please bit more Elaborative  about the differences between methods and constructors??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 04:38:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063792#M971430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T04:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063793#M971431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiii! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Methods are internal procedures in classes that determine the behaviour of the objects. they can access all attributes in their class and can therefore change the state of other elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Methods have a signature that enables them to receive values WHEN THEY ARE CALLED and pass values back to the calling program.Methods can have any number of importing, exporting and changing parameters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constructors are basically a method which are called automatically at runtime with the CREATE OBJECT statement.&lt;/P&gt;&lt;P&gt;CONSTRUCTORS  CAN ONLY BE DECLARED IN PUBLIC SECTION, WHILE METHODS CAN BE DECLARED BOTH IN PRIVATE AND PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Abhijeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 04:46:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063793#M971431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T04:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063794#M971432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In what case we are using constructors??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Arun Joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 06:27:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063794#M971432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T06:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063795#M971433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Joseph!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Just check out this link, all your doubts regarding ABAP Objects will be cleared&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-press.de/katalog/buecher/htmlleseproben/gp/htmlprobID-28?GalileoSession=22448306A3l7UG82GU8#level3~3" target="test_blank"&gt;http://www.sap-press.de/katalog/buecher/htmlleseproben/gp/htmlprobID-28?GalileoSession=22448306A3l7UG82GU8#level3~3&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Abhijeet Kulshreshtha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 07:14:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063795#M971433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T07:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063796#M971434</link>
      <description>&lt;P&gt;Their are  two types of constructor  : 1. Instance Constructor  2.Static constructor&lt;/P&gt;&lt;P&gt;instance constructor are the default constructor which will trigger automatically when we try to create the object of particular class.&lt;/P&gt;&lt;P&gt;for instance constructor we use :&lt;/P&gt;&lt;P&gt;Methods : constructor.&lt;/P&gt;&lt;P&gt;Static constructor are the special kind of method which will trigger automatically when the class will load onto the memory.&lt;/P&gt;&lt;P&gt;for  static constructor we use :&lt;/P&gt;&lt;P&gt;class-Methods : class_constructor.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 06:52:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063796#M971434</guid>
      <dc:creator>former_member778361</dc:creator>
      <dc:date>2021-11-30T06:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor and Class constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063797#M971435</link>
      <description>&lt;P&gt;Thanks for coming to SAP
Community for answers. Please post your question as a new question &lt;A href="https://answers.sap.com/questions/ask.html"&gt;here&lt;/A&gt;:&lt;/P&gt;

&lt;P&gt;Since you're
new in asking questions here, check out &lt;A href="https://community.sap.com/resources/questions-and-answers"&gt;our &lt;/A&gt;&lt;A href="https://community.sap.com/resources/questions-and-answers"&gt;tutorial
about asking and answering questions &lt;/A&gt;(if you haven't already), as it
provides tips for preparing questions more effectively, that draw responses
from our members. &lt;/P&gt;

&lt;P&gt;Please note,
that your post here won't be answered.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 06:52:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor-and-class-constructor/m-p/4063797#M971435</guid>
      <dc:creator>former_member751591</dc:creator>
      <dc:date>2021-11-30T06:52:41Z</dc:date>
    </item>
  </channel>
</rss>

