SMART POINTERS in C++ (std::unique_ptr, std::shared_ptr, std::weak_ptr)

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 มิ.ย. 2024
  • Patreon ► / thecherno
    Twitter ► / thecherno
    Instagram ► / thecherno
    Discord ► thecherno.com/discord
    Series Playlist ► • C++
    Thank you to the following Patreon supporters:
    - Samuel Egger
    Gear I use:
    -----------------
    BEST laptop for programming! ► geni.us/pakTES
    My FAVOURITE keyboard for programming! ► geni.us/zNhB
    FAVOURITE monitors for programming! ► geni.us/Ig6KBq
    MAIN Camera ► geni.us/t6xyDRO
    MAIN Lens ► geni.us/xGoDWT
    Second Camera ► geni.us/CYUQ
    Microphone ► geni.us/wqO6g7K

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

  • @cpdorli
    @cpdorli 6 ปีที่แล้ว +856

    This is one of the best series about C++. It's clear, it's fast and it has a charming and confident tutor.

    • @catorials444
      @catorials444 4 ปีที่แล้ว +8

      Agrreed

    • @amp2amp800
      @amp2amp800 3 ปีที่แล้ว +9

      That's exactly what I like too!

    • @anmararw
      @anmararw ปีที่แล้ว +2

      Definitely

    • @zanagi
      @zanagi 7 หลายเดือนก่อน +7

      6 years later, also yes

    • @theleopeople5771
      @theleopeople5771 13 วันที่ผ่านมา +1

      he made me become gay

  • @peligros13
    @peligros13 2 ปีที่แล้ว +227

    A bit late but after listening to several experts, it seems that the authors of the standard and the guidelines are VERY clear about when to use raw or smart pointers. I'll try to summarize them.
    1. NEVER use new or delete. It has to be very clear wether a pointer owns the object or doesn't. If it owns the object (for example, it is creating the object), use a smart pointer and make_unique or make_shared.
    2. By default, use unique_ptr because it has almost no overhead. If you know it will need to have several owners, use shared_ptr.
    3. When the pointer will not own the object, use raw pointers. For example, when passing an object to a function, the pointer that receives it will not own the object (it will still be alive once the function returns), so don't pass the smart pointer, pass a raw pointer.
    To pass a unique_ptr as a raw pointer to a function, the best way is to dereference it and pass it by reference. So the function is just for example "void foo(const Class& myObject)", and you call it with "foo(*myPointer)".
    Another way would be to pass the adress itself, with the method "unique_ptr.get()".
    4. Again, never use delete on a raw pointer and assume it does not own the object.
    5. When you create an object inside a function and want to return it, do it as a unique_ptr. The receiver will be able to do whatever they want with it. Keep in mind that now, passing a local object from a function by copy will not actually copy it, but move it as an r-value. So it will move into the new unique_ptr, without a compiler error. Again, the receiver can do whatever they want, so they can move it into a shared_ptr or even a raw pointer.
    6. When you want to transfer ownership of a unique_ptr, you can do it as a r-value using std::move(). This is basically what I just explained that C++ does when returning from a function. You can do it to transfer the ownership to a function.
    These are the basic guidelines with which you will probably never have memory leaks or loose pointers, they helped me a lot.

    • @jrsbenevides
      @jrsbenevides ปีที่แล้ว +2

      Thanks for this nice summary!!

    • @user-vs6kl8ph5v
      @user-vs6kl8ph5v ปีที่แล้ว +1

      wow, I should save this comment

    • @MrMShady
      @MrMShady ปีที่แล้ว

      Never too late my friend. Im learning only today - thanks for sharing!

    • @lcppproductions7910
      @lcppproductions7910 11 หลายเดือนก่อน

      Thx. This helps a lot.

    • @ObsessiveClarity
      @ObsessiveClarity 7 หลายเดือนก่อน +4

      LOL better organized / more concise summary in a youtube comment than in any article ive seen. Thank u

  • @everettmthunzi
    @everettmthunzi 3 ปีที่แล้ว +166

    These are no mere tutorials ... no, my good friends, these are timeless works of art! Your work is much appreciated!

  • @LucidStew
    @LucidStew 6 ปีที่แล้ว +443

    Thanks for the video. Didn't get smart pointers in any of my C++ classes since colleges still teach C++98 :\

    • @groberti
      @groberti 5 ปีที่แล้ว +79

      @@DelicueMusic they usually still use NULL instead of nullptr, so yeah...

    • @zoedesvl4131
      @zoedesvl4131 5 ปีที่แล้ว +47

      @@DelicueMusic Some schools still use VC++6.0 with ancient C++ standard. In my opinion, they just want to be 'stable'. But I don't by their opinion at all. Computer is still developing in a high speed, teaching outdated things is a waste of time. Laws of calculus remain the same for hundreds of years but computer doesn't.

    • @zoedesvl4131
      @zoedesvl4131 5 ปีที่แล้ว +18

      @@nijucow Some schools are afraid of the risk of major changes. Hence they never leave the outdated things. Seems like students are taught to deal with legacy codes only.
      In my opinion it goes like... Keep teaching a child ancient Greek language. Cool but can they communicate with others at all?

    • @skepticmoderate5790
      @skepticmoderate5790 5 ปีที่แล้ว +27

      My school teaches C++17. Your school needs to get up to date.

    • @HermanWillems
      @HermanWillems 5 ปีที่แล้ว +5

      Do they also teach inheritance ? Likes it's a gift from God? (Rust lang doesn't even have inheritance because it's an anti-pattern)

  • @leixun
    @leixun 4 ปีที่แล้ว +440

    *My takeaways:*
    1. Smart pointers are used to automatically assign and delete heap memory 0:25
    2. Unique pointer 1:12
    3. Shared pointer 5:00
    4. Weak pointer 8:20
    5. When should we use them 9:30

    • @bulentgercek
      @bulentgercek 4 ปีที่แล้ว +6

      @Lei Xun
      Thanks mate

    • @rishitsingh6621
      @rishitsingh6621 4 ปีที่แล้ว +3

      Thanks a lot, again

    • @leixun
      @leixun 4 ปีที่แล้ว +3

      @@rishitsingh6621 You are welcome

    • @minoset6037
      @minoset6037 ปีที่แล้ว

      sex

  • @anicsr
    @anicsr 6 ปีที่แล้ว +124

    I've never watched a better quality tutorial series than this. Thank you so much for making these, cheers!

  • @elgs1980
    @elgs1980 5 ปีที่แล้ว +6

    OMG! Cherno! You make these things so clear that takes other teachers forever to explain.

  • @DaRealPielover1987
    @DaRealPielover1987 6 ปีที่แล้ว +97

    Hey Cherno, I love this series.
    I think that a topic that would be good to cover since many places don't have a good explanation would be rvalue and lvalue references. This was a major pain point for me when learning c++ but is so integral to the language.

  • @alexwhite6133
    @alexwhite6133 6 ปีที่แล้ว +1

    Great, finally one who explains everything comprehensibly!
    Thanks for the effort!

  • @marcusk7855
    @marcusk7855 4 ปีที่แล้ว +5

    I love that idea of implementing stuff in the STL our selves. Great way to learn.

  • @shadowwalker23901
    @shadowwalker23901 6 ปีที่แล้ว +9

    You can make a shared_ptr from a unique_ptr. Using assignment AKA the = operator or std::move(). This make it convent to return a unique_ptr and let the caller determine if they want it to be a shared_ptr or not.

  •  6 ปีที่แล้ว +9

    Very balanced and unbiased summary, thank you.

  • @MBBGun14
    @MBBGun14 6 ปีที่แล้ว +3

    Hi Cherno, another great video. Although, Im C# programmer, it's good to refresh C++ and learn something new - your channel is perfect place for that. I couldn't resist to become your Patreon, to give you some respect for your work, you earned it ;).

  • @Croccifixo
    @Croccifixo 3 ปีที่แล้ว +2

    Currently taking a distance course at uni on C++, working with smart pointers, and this video gives a much neater explanation tham the course material (which for me is in a language I'm not that good at anyways). This really helped clear up some confusions I had about smart pointers based on the course material, thanks

  • @dimbata
    @dimbata 4 ปีที่แล้ว +73

    *std::make_shared is NOT ALWAYS preferred to using "new" to initialize a std::shared_ptr!*
    Due to the fact that weak pointers need the control block to know whether or not the resource is available, using weak pointers that reference a shared pointer instantiated via make_shared, *WILL* keep the whole controller block from being freed, which includes the memory allocated for the resource, even if the resource has been destructed due to reference counting reaching 0.
    ----------
    *TL;DR*
    Using std::make_shared means std::weak_ptr *WILL* keep the memory of the resource from being freed.
    In this case "new" can be used instead of std::make_shared for the instantiation.
    ----------
    That's an old video and you've probably already made a newer one covering this issue, but I thought I'd share this just in case.

  • @andreypalamarchuk472
    @andreypalamarchuk472 4 ปีที่แล้ว +1

    Thank you. Really good explanation of poiters wrappert under-the-hood.

  • @JannisAdmek
    @JannisAdmek 5 ปีที่แล้ว +2

    thank you for making this high quality, easy to follow videos.

  • @kylefillingim9658
    @kylefillingim9658 5 ปีที่แล้ว +15

    I love how the your code has a large enough text size that I can read it, even without full screening the video
    thanks for this. the garbage collector is one of the biggest reasons I stooped using c++ 10 years ago and switched to c#

    • @mryup6100
      @mryup6100 4 ปีที่แล้ว +3

      I've heard bad things about using garbage collector, but I have never used it myself as I am fairly new to the c++ language.

    • @khatharrmalkavian3306
      @khatharrmalkavian3306 2 ปีที่แล้ว +2

      @@mryup6100 He means the C# collector, I believe. C++ does not have a standard GC.

  • @YoMast3r
    @YoMast3r 6 ปีที่แล้ว +2

    I really enjoyed that one. Really good job, keep it that way!

  • @SteveAdamRocks
    @SteveAdamRocks ปีที่แล้ว

    Thanks for the video.
    All your teachings are top notch.
    There's a reason why you show up first when researching a c++ topic.

  • @Xxp0r
    @Xxp0r 4 ปีที่แล้ว +45

    Hey Cherno, re-watching your series as they're always a good refresher. Will, you ever do a video about 3:23 talking about exceptions and why you don't like them?

  • @IshaanKarnik
    @IshaanKarnik 6 ปีที่แล้ว +1

    Best explanation I have come across so far. Keep up the good work.

  • @certainly_unsure
    @certainly_unsure 6 ปีที่แล้ว +1

    The best C++ video series ever. This man is awesome.

  • @robertalaverdyan3150
    @robertalaverdyan3150 4 ปีที่แล้ว +1

    Good job. Seems like this dude really knows what he is talking about. I would like to see more videos with some of the most frequently asked interview questions discussed.

  • @bisalonggoplays2819
    @bisalonggoplays2819 3 ปีที่แล้ว

    Wow, this video shot smart pointers straight into my brain and it didn't even need to write keywords or show diagrams on it. Awesome vid, Cherno ~

  • @WizardofWestmarch
    @WizardofWestmarch 6 ปีที่แล้ว +4

    Might've been worth mentioning how move semantics work with Unique_ptr since that seems to be part of what can make them useful (still getting back up to speed on the language after a lot of time in C#, which your videos are helping with a ton).

  • @Weltdrache
    @Weltdrache 6 ปีที่แล้ว +1

    Wow really good explained and short/fast too! I hope your other videos are as good as this one!

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

    you've explained the essence of the topic in literally several short sentences, this is immediate subscription + notifications on + lifetime respect from me

  • @callmejobson
    @callmejobson 2 หลายเดือนก่อน

    Making my way through this series!! Im taking notes as well thanks again Cherno!

  • @lewisb8634
    @lewisb8634 6 ปีที่แล้ว +64

    I used to be of the mindset that smart pointers were just for people who couldn't be bothered to manually manage memory properly, as if they were a cheap alternative, and I'm glad I'm over that phase now! On top of the advantages you mentioned in this video, I really like them for semantics. Seeing that a dynamically allocated member is a unique_ptr tells me that the parent class will own/be responsible for the object. I still use raw pointers to indicate that a class does not care about owning/managing the pointed-to object, it just wants a brief reference to it (provided that the lifetime of the parent class exceeds that of the object obviously). AFAIK, C++17 is bringing with it the "std::observer_pointer" which is literally just a raw pointer with a more semantically-useful name (whether or not it comes under 'smart' pointer is debatable). It has exactly the same purpose as the raw pointers I use currently and hints that the parent is simply observing the object. Anyway awesome video as usual Cherno, keep up the amazing content! :)

    • @J.D-g8.1
      @J.D-g8.1 ปีที่แล้ว

      Yes i was disinterested in smart pointers myself for a long time.
      But they are very useful not just for memory leaks, but also for the fact that implicit moves can happen very easily.
      So when you care about ownership/storage they can really be a great help to find/avoid bugs.

  • @habibyama
    @habibyama 6 ปีที่แล้ว +1

    Amaznig job Cherno, You nailed it :)

  • @jimba6486
    @jimba6486 3 ปีที่แล้ว +3

    I was lucky to have Professor in data structures who taught as hobby and was a VP of a start up. He taught us modern c++ practiced today. Incorporated C++11 to C++17 features. He is a gem because I hear a lot of people learning C in college, with little to no strong OOP fundamentals

    • @marcs9451
      @marcs9451 ปีที่แล้ว +1

      C or a C-style C++ is actually better for explaining datastructures, it doesnt rely on OOP and gives insight into how memory is managed. C++ with smart pointers or Java/C# being used for this leaves a hole in the student's mind about proper resiurce management

  • @ishgirwan
    @ishgirwan 6 ปีที่แล้ว +47

    Thanks..as usual looking forward for future videos :)
    Will it be possible for you to create a video which explains how c++ 98/11/14/17 are different from each other and how newer versions are better. Thanks again.

  • @ali-kadar
    @ali-kadar 4 ปีที่แล้ว

    Thank you for the explanation. It was very well and succinctly explained.

  • @sankar9483
    @sankar9483 5 ปีที่แล้ว

    Amazing video. Nice coverage on smart ptr. Looking forward more :)

  • @jakubfraczek1208
    @jakubfraczek1208 3 ปีที่แล้ว

    Surprisingly I understood everything, very clear explanation!

  • @groberti
    @groberti 5 ปีที่แล้ว

    Such clear explanation, kudos

  • @mytech6779
    @mytech6779 6 ปีที่แล้ว +2

    It was more than a bit over my skill level, but I recently watched a cppcon talk on smart pointers and the examples they used involved crazy data structures generated from meta-programming templates and whatnot.
    Basically in those cases the smart pointers were helping to prevent unintentionally created circular structures from creating some sort of memory leaking dead-lock issue in programs with long run times.(server farm type software; not really an issue in most games I imagine.)

  • @sammyj29
    @sammyj29 ปีที่แล้ว

    I wish I had found this channel earlier. Loving the videos and the crisp explanation!!

  • @faizydeveloper
    @faizydeveloper หลายเดือนก่อน +1

    Very informative video. I am C# unity game developer but when I TH-cam search Stack vs Heap I found one of video on it. It was so informative so I decided to watch full playlist and now I am on 43 video.

  • @HazemSaleh
    @HazemSaleh 6 ปีที่แล้ว +1

    Excellent man, thanks for your explanation.

  • @greatbullet7372
    @greatbullet7372 6 ปีที่แล้ว +1

    This wasnt enought Cherno for my Opinion, please make more videos. They are awesome

  • @MSP_-wp5fb
    @MSP_-wp5fb 3 ปีที่แล้ว

    This guy basically taught me my advanced prog module better than my lecturer. Did well on my exam today all thanks to the Cherno

  • @mountgraph1403
    @mountgraph1403 6 ปีที่แล้ว +1

    Thank you man as always awesome !

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

    Explained marvelously

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

    Thanks for explaining this so well.

  • @kartikshrivastava1500
    @kartikshrivastava1500 5 ปีที่แล้ว +1

    One thing which I'd like to add is, we can transfer the ownership of unique_ptr with std::move function. After doing that newly created unique_ptr will be pointing to the container pointer by old unique_ptr, and thus old unique_ptr will point to null.

  • @bumate90
    @bumate90 6 ปีที่แล้ว +1

    Wow dude! Great video, very precise.
    Keep up the good work! ;)

  • @cristianotubeful
    @cristianotubeful 5 ปีที่แล้ว +1

    Nice video and good explanation. I appreciate your effort and encourage you to keep it up!

  • @krlozadan1586
    @krlozadan1586 6 ปีที่แล้ว +1

    Great video man! Thanks

  • @jonf6509
    @jonf6509 3 ปีที่แล้ว +1

    10:46 what you need is like some kind of smart pointer so that you can dynamically point to where youtube moves the like button

  • @AmericaAndAllies
    @AmericaAndAllies 5 ปีที่แล้ว

    Excellent introduction. Thanks.

  • @chacho1155
    @chacho1155 2 ปีที่แล้ว

    Awesome explanation! Thank you!

  • @mihaicraciun8678
    @mihaicraciun8678 9 หลายเดือนก่อน

    This cleared up things a lot, thank you!

  • @mattgraves3709
    @mattgraves3709 3 ปีที่แล้ว

    Damn, I was scrolling ahead in the playlist and you cover all sorts of interesting topics here!
    Holy smokes...

  • @justind6983
    @justind6983 6 ปีที่แล้ว +2

    First question I had was is this in a playlist...(few moments later) thank you sir, you have a new sub :)

    • @justind6983
      @justind6983 6 ปีที่แล้ว

      Pointers in C++ and Java in the simplest form are easy for me to understand. But once people start using them beyond the basics... I quickly am lost in the sauce :(

  • @mcjustin1
    @mcjustin1 3 ปีที่แล้ว

    Pointers are still such an issue for me. So cool to see all these various objects discussed in ways I never see brought up on courses.

  • @vinothbose
    @vinothbose 3 ปีที่แล้ว

    Very good explanation. Short and sweet

  • @river6634
    @river6634 3 ปีที่แล้ว

    Solid explanation. Thank you very much.

  • @PandeyRaj
    @PandeyRaj 6 ปีที่แล้ว

    Hi from India , One of the best video series of c++ , straight to point. Thanks for sharing information. Also i'll request you to start a java or any other language/ series too. Thanks again .

  • @charry23fercho
    @charry23fercho ปีที่แล้ว +3

    You're the best youtuber professor in C++. Best regards

  • @naveensenapati9032
    @naveensenapati9032 ปีที่แล้ว +1

    Im 5 years late to this video 😢.
    You changed my whole perspective on them thank you.

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

    One of my favorite videos to date! :)

  • @justchill99902
    @justchill99902 2 ปีที่แล้ว

    Thank you :) Such an intimidating topic made looked like a piece of cake. It's been Chernified :D

  • @jmokut
    @jmokut 2 ปีที่แล้ว

    great concise explanation!

  • @K3rhos
    @K3rhos 9 วันที่ผ่านมา

    I already knew about unique_ptr and shared_ptr, but always was confused about weak_ptr because I never really had a use case, thanks for the clarification !

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

    Great examples & explanation

  • @AndrewMelnychuk0seen
    @AndrewMelnychuk0seen 3 ปีที่แล้ว

    Hey this was an excellent explanation on the topic! Thanks a lot.

  • @Kapil_Thakar
    @Kapil_Thakar 2 ปีที่แล้ว

    Great and to the point explanation.. Love it...

  • @broken_abi6973
    @broken_abi6973 5 ปีที่แล้ว +5

    I think you should have emphasized that you can pass a unique_ptr by reference to a function or move it. The latter is really important when you want to put an object with a unique_ptr inside an STL container.

  • @annahakobian7371
    @annahakobian7371 5 ปีที่แล้ว +1

    Thank you man!!

  • @miguelfernandosilvacastron3279
    @miguelfernandosilvacastron3279 6 ปีที่แล้ว +1

    Very good explanatory video.

  • @shizhouliu4131
    @shizhouliu4131 2 ปีที่แล้ว

    Your C++ series make me feel C++ is lovely. :)

  • @trantrungkien2790
    @trantrungkien2790 ปีที่แล้ว

    thank you! easy to understand

  • @mokbelkaram9113
    @mokbelkaram9113 4 ปีที่แล้ว +1

    I really like your videos! Can you make a playlist about design patterns in c++ ?

  • @007hunting
    @007hunting 3 ปีที่แล้ว

    @thecherno loved all videos of C++ series

  • @Anonymous-ym6st
    @Anonymous-ym6st 5 หลายเดือนก่อน

    Really awesome video!!! Easy to understand with good examples! But did I miss it or anyone else find the video about implementing these unique_ptr / shared_ptr later in the playlist or other places?

  • @Texas-Manager
    @Texas-Manager 2 ปีที่แล้ว

    What a pretty course about Smart pointer! Thanks

  • @omriz6909
    @omriz6909 3 ปีที่แล้ว

    Extremely helpful video!

  • @martintourangeau4882
    @martintourangeau4882 3 ปีที่แล้ว

    Très bien expliqué, bravo !

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

    Love your channel, clear and concise. It would be great if you can give good example where it is preferred to just use 'new ' and 'delete' instead of smart pointers . Thanks!

    • @khatharrmalkavian3306
      @khatharrmalkavian3306 2 ปีที่แล้ว

      When writing custom allocators, or in those somewhat rare cases when you have to work with an external library that insists on doing its own memory management, but wants you to hand it allocated objects. (There are all kinds of really horrible libraries out there.)

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

    Perfect explanation, thanks so much!

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

      Unfortunately it is not perfect and explains it on wrong level IMHO - too simplified. You need to explain what ownership means and how using smart pointers make your program cleaner and more readable.

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

      @@bumbarabun *shrug* I dunno, works for me!

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

    Great Explanation

  • @daSurrealist
    @daSurrealist 5 ปีที่แล้ว

    crisp and clear

  • @gauravmehta888
    @gauravmehta888 4 ปีที่แล้ว +1

    Cool .. very clearly explained .. but i wish u could mention circular dependency issue with shared_ptr.

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

    Very cool video dude. Well explained.

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

    Thank you for helping me relearning C++

  • @DTQC
    @DTQC 4 ปีที่แล้ว +2

    The overhead of smart pointers is usually negligible to the system call used to allocate memory and negligible to the time wasted on debugging a memory leak.

    • @khatharrmalkavian3306
      @khatharrmalkavian3306 2 ปีที่แล้ว

      It's possible to cause a train wreck using shared_ptr poorly, but unique_ptr is virtually gratis on modern compilers.

  • @mksagal
    @mksagal 6 ปีที่แล้ว +154

    Hey Cherno Stroustrup, master of C++. I want to be your apprentice.

    • @rcookie5128
      @rcookie5128 4 ปีที่แล้ว +16

      Blasphemy! We're unworthy!! D: /s

    • @eurko111
      @eurko111 4 ปีที่แล้ว +4

      @@rcookie5128 XD

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

    thanks so much your video on smart pointers is very useful and interessant .
    All the best regards

  • @crusaderanimation6967
    @crusaderanimation6967 2 ปีที่แล้ว

    Ngl at first a kinda liked the idea of managing your memory yourself with new & delet "Real men style" but when i grasped what unique_ptr dose it started to love it !
    And now i know what shared_ptr and weak_ptr dose too.

  • @JoshuaKisb
    @JoshuaKisb 6 ปีที่แล้ว +1

    AWESOME VIDEO. ur the best.

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

    smart ptr is so charming bro,a great invention of modern c plus plus.And this lesson is so sick!

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

    Please complete the series of STL containers. how to select which container to use and why?

  • @h.hristov
    @h.hristov 6 ปีที่แล้ว +1

    Thank you :)

  • @AlexTilkin
    @AlexTilkin 5 ปีที่แล้ว

    Great job!

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

    thxxxx for this awesome tutorials

  • @ahmedalbarbary9814
    @ahmedalbarbary9814 5 ปีที่แล้ว +1

    Thanks alot

  • @bebel4298
    @bebel4298 3 ปีที่แล้ว

    It's my fourth time watching this video. Satisfied, as always.

  • @paulozhang9346
    @paulozhang9346 3 ปีที่แล้ว

    What an awesome tutorial.