Static Members (Lecture 31)

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

КОМЕНТАРІ • 9

  • @kawaldhillon1440
    @kawaldhillon1440 4 роки тому +1

    32:09 Printer::printer().~printer(); (just above return 0 statement ) can cause memory leak as our object is in dynamic memory and it would not be freed up.
    instead use delete Printer::printer();

    • @mindyourbusiness46
      @mindyourbusiness46 4 роки тому

      Yes. Should be 𝚍𝚎𝚕𝚎𝚝𝚎 &𝙿𝚛𝚒𝚗𝚝𝚎𝚛: :𝚙𝚛𝚒𝚗𝚝𝚎𝚛();

  • @xdprogrammer9579
    @xdprogrammer9579 3 роки тому

    Better here than in swayam supperrr clarity and correct

  • @piyushkant6550
    @piyushkant6550 6 років тому +6

    15:04 compiler will start crying xD

  • @sahejmunda5030
    @sahejmunda5030 5 років тому

    fabulous explanation ! Deep thinking

  • @lakshmankusu1569
    @lakshmankusu1569 5 років тому

    One of the best lecture..!!

  • @poojakabra1479
    @poojakabra1479 2 роки тому

    when i run the program for singleton class the output isn't the same? can anyone else who has tried explain?