44 - ABAP OOPS - Constructors Part1

Поділитися
Вставка
  • Опубліковано 16 гру 2024

КОМЕНТАРІ • 10

  • @SravanKaredla
    @SravanKaredla Рік тому +3

    super sir iam a big fan of you

  • @vikrantkatoch6293
    @vikrantkatoch6293 Рік тому +1

    U r the best sir.

  • @rajameenasankar1851
    @rajameenasankar1851 3 місяці тому

    what is the difference between static and Instance attributes?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  3 місяці тому

      Static attribute exists only once for each class and instance attribute exists separately for every instance of the class. Similar to static method and instance methods - We can call a static attribute through class and instance attribute through object of the class.

  • @bestcalmmusic8149
    @bestcalmmusic8149 3 місяці тому

    very good explanation

  • @gauriwarkal2725
    @gauriwarkal2725 4 місяці тому

    Sir what is meant by attributes here? What is the diff bet attributes and parameters?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  4 місяці тому +1

      Attributes are the data objects of a class which are accessible by all methods of the class. Parameters( Importing, Exporting, Changing, Returning) are methods specific.