Design Patterns - Singleton - 02

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 พ.ย. 2024

ความคิดเห็น • 18

  • @ibs4584
    @ibs4584 4 ปีที่แล้ว

    انت رائع الله يوفقك ويعطيك العافيه .. جزاك الله خير.. شرحك مفيد جدا

  • @amrhaggag2629
    @amrhaggag2629 4 ปีที่แล้ว

    More videos about the singleton please

  • @sharkoman66
    @sharkoman66 4 ปีที่แล้ว

    شرحك حلو جداا .. بس ياريت لو تكبر الفونت شوية في vscode عشان يناسب التصوير مش اقل من 20 بيكسل

  • @a7medsayed2010
    @a7medsayed2010 4 ปีที่แล้ว

    straight to the point, keep it up

  • @khaledsalah4762
    @khaledsalah4762 4 ปีที่แล้ว

    وقت الفيديو مناسب جدا (المختصر المفيد) والمحتوي عظيم,استمر (Y)

  • @user-mz4kk7ry2v
    @user-mz4kk7ry2v 4 ปีที่แล้ว

    شرح ممتاز واطلالتك جميلة واسلوبك ممتع . تحية لك واتمنى المواصلة

  • @omarezz7724
    @omarezz7724 4 ปีที่แล้ว

    time was amazing..hope talk about state or observer ... :D

    • @amrmohamed2608
      @amrmohamed2608  4 ปีที่แล้ว

      Did talk about the observer after this one :D

  • @mahmoudfarrag2576
    @mahmoudfarrag2576 4 ปีที่แล้ว

    الشرح ممتاز
    بس حاول تكبر الخط او تعمل زوم لما تيجي تكتب الكود

  • @lordadamson
    @lordadamson 4 ปีที่แล้ว

    pretty good video btw

  • @mahaamin3267
    @mahaamin3267 4 ปีที่แล้ว

    3aaaaaash

  • @lordadamson
    @lordadamson 4 ปีที่แล้ว

    Better singleton in C
    db.h:
    #pragma_once
    struct db;
    db* get_db(void);
    // more functions that deal with db hena
    db.c:
    #include "db.h"
    struct db {/*db stuff*/} _db;
    db* get_db()
    {
    return &_db;
    }
    // implementation of the rest of the functions

    • @amrmohamed2608
      @amrmohamed2608  4 ปีที่แล้ว

      This looks neat
      Some says that singletons are anti design patterns...and I honestly believe that they should not be included in dp books or whatsoever

    • @lordadamson
      @lordadamson 4 ปีที่แล้ว

      @@amrmohamed2608 there is no such thing as anti pattern. It all depends on the context. I would happily accept criticism to Singletons in a certain context stating specific reasons why exactly it's bad.

    • @lordadamson
      @lordadamson 4 ปีที่แล้ว

      Btw lama ba2ool "better Singleton" I'm referring to my other comment msh asdy better than your code 😄

  • @EngAMagdyCS
    @EngAMagdyCS 4 ปีที่แล้ว

    at min 2:04 you are explain something that your face camera is covering the board so it makes some confusion.

    • @amrmohamed2608
      @amrmohamed2608  4 ปีที่แล้ว

      Yup you are correct, I'll try to take care in the upcoming videos

  • @lordadamson
    @lordadamson 4 ปีที่แล้ว

    singleton in C = global variables lol
    struct db {/*db stuff*/} _db;