Function Pointers in C++

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

КОМЕНТАРІ • 365

  • @jun7452
    @jun7452 6 місяців тому +18

    Man, that is absolutely crazy!
    Honestly, the more i learn about C++ the more i want to learn about the language, it's like you're fighting a Hydra, you cut one head but two grow as a replacement. I know these things aren't actually easy to get, and since there are like an infinite ammount of things you can do with this language, sometimes it just makes the programmer's life harder.
    But i think that this just shows that C++ is all about giving control to the programmer to do basically anything he wants to do, which i find it to be fascinating in it's own way.
    I'm aware that you won't read this comment since this video has been out for a long time, but i seriously am grateful you made this huge ass playlist bro! It's really really helping me to learn this language
    Thanks bro!

  • @EmbeddedSorcery
    @EmbeddedSorcery 5 років тому +702

    Pointer concept isn't hard. Syntax is just awkward and confusing imo.

    • @SankoshSaha_01
      @SankoshSaha_01 4 роки тому +64

      honestly that the problem; i forget it everytime!

    • @joestevenson5568
      @joestevenson5568 4 роки тому +23

      You have to read the syntax backwards

    • @Mateus.007
      @Mateus.007 4 роки тому +43

      int (*f(float (*)(long), char *))(double);

    • @Simon-jw1ww
      @Simon-jw1ww 3 роки тому +11

      if you mess it up it can be very dangerous too. One of the Syntaxes you have to understand before you try around.
      Thanks god c++ has smartpointers aswell.

    • @obinator9065
      @obinator9065 3 роки тому +9

      @@Simon-jw1ww function pointers have nothing to do with smart pointers.
      For something like this you should use lambdas and std::function.

  • @kinggore5229
    @kinggore5229 4 роки тому +97

    Someone give this man a medal, pls.

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

    A+++++ content! I've been wanting to learn more about function pointers.

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

    Who else is binge watching the playlist?

  • @vipulkamani6538
    @vipulkamani6538 4 роки тому +163

    By far the best videos on C++. Thanks man! You just taught me overnight what my professor couldn't in 7 weeks.

  • @neo-babylon7872
    @neo-babylon7872 5 років тому +61

    Dude you're so good at explaining stuff. I was trying to understand function pointers for so long and all it took was this video. Also really good job on the threading video. Keep it up!

  • @shah.kairav
    @shah.kairav 2 роки тому +12

    Another nice use-case of function pointers could be system calls in OS development. You can talk about how the operating system stores an array of function pointer corresponding to each system call and that helps calling functions simply by indexing in that array.

  • @NeoKailthas
    @NeoKailthas 3 роки тому +11

    This is like when you are half way through the semester and half the class dropped out or changed major.

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

      i just want to see how many are left in the end

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

    i love that you give a real useful example! ive seen bucky's videos and he never does this. he just tells you the idea and i guess assumes you know when to apply it. great job!

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

      bucky's tutorials are way better. cherno overcomplicates things. there's nothing hes done here that cant be done with just normal functions so he hasn't demonstrated on why u NEED to use function pointers.

    • @TheCodeHunter
      @TheCodeHunter 2 роки тому +1

      @@reenamola2162 cherno goes into proper detail, Bucky just scratches the surface

  • @tyreerobinson2016
    @tyreerobinson2016 4 роки тому +15

    Your videos are absolutly amazing! You mix it up! Most youtubers just make you stare at a console through the whole course, and they only use their cursor to explain things. This playlist is well put together and well worth my time. Keep up the good work

  • @AswinJP
    @AswinJP 4 роки тому +5

    Very few people do such an excellent job at this. Thank you Cherno! :)

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

    I think what makes you so much better than everyone else is the fact that you give examples of where you would actually use all the things you teach in code.

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

    Found your c++ series now. To learn C++ and dive in quickly your videos are absolute great!

  • @NeoKailthas
    @NeoKailthas 3 роки тому +5

    "Gentle introduction" lol 😆

  • @ectoid6316
    @ectoid6316 5 років тому +7

    I like your videos, sometimes I just need a quick look into a subject and don't have the time to read the technical reference pages. So I just crank your videos double speed and blast my brain. :D thnx

  • @DanielLiljeberg
    @DanielLiljeberg Рік тому

    This brought back memories... I remember back in the early 2000 when I added a console to my game engine and hooked up function pointers to strings to be able to call those functions from the console :P

  • @eventhisidistaken
    @eventhisidistaken 3 роки тому +17

    Function pointers were the precursors to OO. On rare occasion, I still use function pointers ( for dll support) , but really, you should avoid them when they are not necessary, not just because of the obtuse syntax, but because they are too loose - which means intractable bugs. I have seen people essentially reinvent c++ using #define and function pointers. I'm sure they thought it was really clever, but they were the only people willing to maintain the code. As soon as they leave the project, the first thing that happens is others toss their unmaintainable garbage code into the bit bucket and start over.

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

    Jesssss.......How incredible channel full of C++ special content.Thankyou very much.It's hard to find something like you here in my classroom....

  • @ETZERBEATS
    @ETZERBEATS 3 роки тому +1

    Your videos are amaizing, I was struggling with pointers and function pointers on my faculty projects and your tutorials made my life easier. Thanks and keep doing the good work.

  • @SaifuddinEvloev
    @SaifuddinEvloev Рік тому +2

    Function pointers allow us to use the concept of higher order function map, if the map function is too complex, then lambda functions won't be readable. So I think that function pointers are still an important part of C++.

  • @annahakobian7371
    @annahakobian7371 5 років тому +3

    best c++ tutorials, thanks man

  • @yang-z
    @yang-z 4 роки тому +1

    A function and a pointer to the function are different types. When assign a function to a variable, func converts itself to a pointer implicitly, just as you mentioned. On the other hand, we can use a ptr to a func to "interact" with "operator ()" just as func itself, just because the "()" is overloaded implicitly, I guess.
    Actually, a function is able to be "quoted" by reference with the original type rather than a pointer. But when you want to store several functions to a array to do a batch call, the pointers are stored.

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

    That explanation at 1:04 just clicked in my head and I didn’t even watch the rest of the video. Thanks brotha 🙏🏾

  • @muhammadarslanrana942
    @muhammadarslanrana942 4 роки тому +3

    with this we can implement map(), reduce(), filter() functions as well.

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

    I just realized this is how callback function works. Amazing!

  • @zoronic6248
    @zoronic6248 4 роки тому +6

    I know it's a bit late, but GODDAMN THAT HAIRCUT MAN!!!!! Everyone looks good with a fade and part

  • @GenericPhantom1
    @GenericPhantom1 Рік тому

    The name says it all. It points towards a function instead of a variable.

  • @robfei-u6b
    @robfei-u6b Рік тому

    this lesson which involves some many technical things such us auto, vector, typedef, function pointer, reference, even iterator inside

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

    Probably the best c++ tutor on youtube

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

    Dude. Your explanations are saving my life right now!

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

    Every time I want to know something about modern c++, I come here. Good job Cherno!

  • @daveski084
    @daveski084 5 років тому +4

    He's so cute, makes learning C++ that much better lol.

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

    i personally love function pointers.
    I regulary store them in hashmaps , to call a similar, but different funktion every time.
    Like when i create elements of some sort, but the functions are only similiar in theory, but the execution is different, even if the result is the same.
    And at this point, i create a HashMap, calling the functions by keyword, with needed parameters. Thats so cool, it really helps me keep my functions organized, and i can add another element to the Map easily at any point
    For example when i want to parse Network data from another program, or via Rest APIs

  • @abhisheksa6635
    @abhisheksa6635 Рік тому

    Man have been coding for a while, even that passing function inside another function using function pointer is sort of a overkill but yeah that's a way and can be used.
    I am majorly from a C background and mostly in my code we have seen the function pointer array but this was next level, the lambda is not known to me much, will go through and understand it.

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

    OMG!
    did i just learnt lamda and function pointer in 10 minutes... awesome!

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

    Awesome explanation. I did search a lot but couldn't understand. But now all my doubts are clear after watching this video. Great content.

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

    Great content! I was trying to write a homework and couldn't understand what I was doing wrong. after this video I could fix it immediately. VERY HELPFUL THANK YOU

  • @DiogoManteu
    @DiogoManteu Рік тому

    Such a great explanation with examples.

  • @NeZversSounds
    @NeZversSounds 4 роки тому +2

    I learned a similar thing in GameMaker and used for Finite State Machine, where state function is assigned to a variable that is called each game frame.

  • @jakobhuetter
    @jakobhuetter 3 роки тому +1

    Love your videos! Helping me a lot with my university stuff!

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

    That helped me so much in writing my own game engine with glut window and opengl

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

    finally a channel whose videos i dont have to watch at 1.5x or 2x

  • @Simon-fu8sd
    @Simon-fu8sd 2 роки тому

    I just find this so cool

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

    The best C++ explanations EVER!
    Thanks!

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

    I respect you dude

  • @AngelTaylorgang809
    @AngelTaylorgang809 4 роки тому +3

    Start a data structure series please, greetings from Texas

  • @leducphuclong
    @leducphuclong 5 місяців тому

    Thank you so much !! Great Teacher !!

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

    Really good tutorial. Thx from China ❤

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

    Thank you so much!! I was revising cpp and I got stuck here. This really helped me a bunch. Definitely subscribing!

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

    Man, it's awesome, thank you so much for these lessons ♥

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

    Thanks for making these videos, they really help a lot!

  • @figurehe4d
    @figurehe4d 6 років тому

    excellent video. well explained. function pointers seem useful but the way I've been exposed to them so far only highlights the confusion!

  • @lemonextract1325
    @lemonextract1325 10 місяців тому

    thank you

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

    This is very handy matter in C++. I can pass a pointer as a parameter, pointer to function which I want to be in charge of handling values. :D

  • @JoCS11152
    @JoCS11152 Рік тому

    mate i fucking love your series

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

    Cool mister. A good explanation.

  • @masterproducts0
    @masterproducts0 6 років тому

    The simple explaination makes it very helpful! :) Thank you for this series and keep going like you do.

  • @LAB_XI
    @LAB_XI 8 місяців тому

    Great as usual 🔥

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

    I've been working with UE4 and dispatchers seem to work based on function pointers, but I was never sure what a function pointer _was_ or how it was _written_ because UE code is so....'nebulous' isn't the right word, it's just kinda hard to track stuff down is all.
    And this video got me caught up. A+ stuff right here.

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

    Thank you Cherno for this super fantastic explanation!

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

    I have always struggled with pointers but this video actually turned on a lightbulb for me XD. I know function pointers are different but the "pointer theory" if you will makes much more sense now!

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

    Brilliant content. I can't thank you enough, Cherno!

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

    thank you!!

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

    That last bit blew my mind haha. main() calls ForEach which then runs a for loop and "calls" the lambda function which then revisits the for loop can calls the lambda again etc. To make matters worse - ForEach could then still return a value. Lol. Thanks for making my brain hurt Cherno

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

      If it hurts your brain to look at it, then it's usually bad code. I will say, brain hurt is not uncommon when dealing with templates, but it's a necessary pain.

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

      @@eventhisidistaken his code was merely demonstrative. So doesnt really matter if it's "good" or "bad"

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

      @@gvcallen It's demonstrative of what *not* to do.

  • @PflanzenChirurg
    @PflanzenChirurg 6 років тому

    Im so in love with u that u continue this series

  • @naughtrussel5787
    @naughtrussel5787 6 років тому

    Thank you for cool vids. Plz don't stop.

  • @MohdFaisal-ie6mo
    @MohdFaisal-ie6mo 6 років тому

    Keep up the good work. UA-cam need experience coders like you.

  • @santhoshnagarajs3489
    @santhoshnagarajs3489 6 років тому

    finally i understand why there is need for function pointers!!
    thank you .

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

    Thank you!! You just saved me and my assignment from the due date

  • @avnishs.2514
    @avnishs.2514 4 роки тому

    Amazing video! Helped me understand better

  • @foomoo1088
    @foomoo1088 2 роки тому +2

    Would be nice to include example with a class member function as well! There’s a couple tricky details to attend to in that case (non static class member function)

    • @Raul-vg3wt
      @Raul-vg3wt 2 роки тому +1

      Would you be able to explain the details?? I haven't had much luck looking an answer up. Running into issue with this exact problem.

    • @foomoo1088
      @foomoo1088 2 роки тому +1

      @@Raul-vg3wt I’ll try to post an example this weekend (crunching this week)

    • @Raul-vg3wt
      @Raul-vg3wt 2 роки тому +1

      I had a tough google session but I managed to figure out how it works. A video would be great tho. There needs to be more on the internet about this subject. 👍

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

    In C# i use Action for function pointers. Function pointers are great for Publish/Subscription type of projects.

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

    Bro you're a fantastic teacher! thanks a lot!

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

    Thanks for demystifying subject

  • @laurentiudobrescu9045
    @laurentiudobrescu9045 6 років тому

    Good work ! I need this video , it's awesome !

  • @danielc4267
    @danielc4267 6 років тому

    Great content. Thank you cherno

  • @Hemanth83439
    @Hemanth83439 Рік тому

    pretty cool

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

    .... in the future...
    Just kidding. I find your series extremely useful.

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

    wow
    A Programmer with awesome video quality that doenst use a Mac
    I appreciate that

  • @zackjandali
    @zackjandali 5 років тому +1

    @TheChernoProject I've never seen that kind of for loop! I kinda understand what it does: for (every index in : this array) do this; I'd like to see what other ways that could be used! Could you do a short video, or dedicate part of a video to explaining that. If you've already done that, can you show me where to look? :) Thanks for the vids, they're so helpful

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

    Excellent vid.

  • @k-tech2937
    @k-tech2937 3 роки тому +1

    Awesome content. Function pointer are awesome, however I struggle with passing member functions as pointers. So far i have been only able to pass static member functions, if i defiene non static function and try to pass it as a parameter into another function i end up wth this error: non-standard syntax; use '&' to create a pointer to member. Is there a way tou use non static member functions as pointer in c++?

  • @trongnhantran3358
    @trongnhantran3358 Рік тому

    This blow my mind!!

  • @Idan-tc5rt
    @Idan-tc5rt 6 років тому +22

    Cherno what are the odds that you'll make a video about Standard Template Library in this series ? I can't find any good guides for it.

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

      Idan try Derek banas series

    • @TheMR-777
      @TheMR-777 4 роки тому +2

      @@gabeitch7786 O man! Don't know how to thank you! U just showed me quite an *AMAZING* Channel! Definitely gonna follow this! Many Thanks!

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

      @@TheMR-777 No problem buddy

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

      Learn from cppcon talks, and people like Jason turner. Cherno is great for revising basics.

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

    you should do a video about using variadic templates function pointers, its a really cool topic.

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

    Showing functional (trailing return) style might give another way to think of it : auto (*foo)( int ) -> void;

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

    That Haircut though xD

  • @gunrunjk
    @gunrunjk 6 років тому

    I always enjoy your video.

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

    C++ Callbacks! Nice

  • @adocarpel7770
    @adocarpel7770 6 років тому

    many thanks

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

    So, like nested functions, essentially? very cool

  • @shahadalrawi6744
    @shahadalrawi6744 7 місяців тому

    The life savior

  • @tokita1230
    @tokita1230 6 років тому

    I hope that you'll talk about method pointers in the next video and how you can use them without the standard library.

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

    12:16 "...this series..." it activates my siri... 😂😂😂😂😂😂😂😂😂

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

    good typing speed i am impressed

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

    Now its making more sense to use callbacks in javascript

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

    Let's be honest. After you learn about function pointers, you still have great replay value due to the pose at 0:00

  • @robfei-u6b
    @robfei-u6b Рік тому

    this is the best

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

    noob question, why do u have '&' after const std::vector
    is it because you are taking the param as reference and not value?
    but why if you are not changing the variable?
    sorry if the questions sounds dumb, I'm just trying to learn

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

      also, shouldn't the & sign be before the name of the param and not after the type or is it the same?