Golang: The Last Interface Explanation You'll Ever Need

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

КОМЕНТАРІ •

  • @rhysmuir
    @rhysmuir 2 місяці тому +25

    When creating your interfaces, all this is easy to understand. It's when you are using imports (even from the standard library), is when it gets hard. There is no clear way to tell (that I'm aware of) what interface a stuct implements without digging through the code finding what functions an interface implements, and then checking if the struct you want to use implements those same ones

    • @seand7603
      @seand7603 2 місяці тому +3

      It drives me nuts. Rust spoiled me :)

    • @kevinryan2992
      @kevinryan2992 Місяць тому +2

      The go language server (gopls) does implement this functionality, however I do agree if you are just reading code without the use of an external tool, implicit interfaces are definitely not as nice as explicit

  • @danielrosenthal7480
    @danielrosenthal7480 3 місяці тому +2

    I've been struggling with how interfaces work for a while now and I think this video finally got it to click for me. Thank you.

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

      I am glad to hear that!

  • @sval4020
    @sval4020 5 місяців тому +8

    Hey Flo, just wanted to say how much I like your teaching style. Your videos are great! Please cover more advanced Golang topics such as Go concurrency patterns and best practices. Thank you!

    • @FloWoelki
      @FloWoelki  5 місяців тому +2

      Thank you so much for the great feedback!
      Go Concurrency patterns is definitely a video on my todo list :)

  • @guru_tz
    @guru_tz 8 днів тому

    Damn man, that was a direct hit. So clear and tqsm

  • @davidmolizane
    @davidmolizane Місяць тому

    Bro everything in this video is amazing, the quality of the explanation, camera, audio and code examples, thanks for this excelente tutorial

    • @FloWoelki
      @FloWoelki  Місяць тому

      Thank you for your comment and for watching the video! Glad I could help you :)

  • @user-oz4tb
    @user-oz4tb Місяць тому

    Ahh, such a lovely explanation! Finally clicked for me how and why Error interface works!

    • @FloWoelki
      @FloWoelki  Місяць тому

      Nice to hear that! So awesome that you found it helpful :)

  • @楊宏-l6t
    @楊宏-l6t 4 місяці тому +2

    This teacher is so logical, thanks!!

  • @yinetoyi
    @yinetoyi 3 місяці тому +1

    Thanks for the video, the explanations are easy to understand. One thing I didn't fully get is how by passing the CalculationError{msg: "Invalid input"} struct instance on the performCalculation() the performCalculation() would use the Error() method of the CalculationError struct, I would've thought that we would need to call the Error() method of the struct but this is not the case, so what I gather with this is that the compiler implicitly deduces that since we are returning a value of type error and because we're using the CalculationError{msg: "Invalid input value"} struct instance as its return value it "sees" that this struct instance has a method that implements the Error() function and hence it uses it. So this is some sort of implicit default method for specific type returns or something like that, I honestly don't no how to refer to this behavior, I had no knowledge if this behavior but is good to know.
    Thanks again for putting this video together.

    • @codingchannel6263
      @codingchannel6263 Місяць тому

      error interface is already defined in Go's standard library. We don't need to define it ourselves; we only need to implement it. We don't need to write err.Error() explicitly. when we do fmt.Printf(error instance/objects of error struct ) In most cases, you don't need to call the Error() method explicitly. Go will call it automatically in certain situations:
      When you use fmt.Println() or fmt.Printf() with an error value.
      When you convert an error to a string (e.g., with err.Error() or string(err)).

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

    The kind of thinking of interfaces being a contract is not wrong, but kinda abstract.
    Think of an interface as a membership, named after whatever you decide to call your interface, in this case "Shape". For any struct/class that wants to have that membership, they have to implement the functions described in that interface, much like how you may want to meet certain criteria to have a gym membership.
    So for Circle and Rectangle, they have to implement all Shape functions/methods to have a Shape membership. This is convenient because perhaps there could be a function somewhere that only takes Shape members to operate on them (calculateArea), and if Circle and Rectangle are Shape members, that function can operate on either one of them

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

      That's also a nice way to see it, except that I can always have a membership of something without meeting any requirement or using the membership :D

  • @khaliddaoud
    @khaliddaoud 21 день тому

    I'm new to Go and your video's help me a lot, thanks 🙏. Keep it up 💪

    • @FloWoelki
      @FloWoelki  21 день тому

      Glad to hear it! Thank you so much :)

  • @cacadu971
    @cacadu971 3 місяці тому +1

    I've never seen someone explain something that clearly

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

      Wow, thank you! :)

  • @SunilShahu17
    @SunilShahu17 2 місяці тому +2

    Why don't we embed interface into structures? For example, If you intend to make a structure implement an interface, simply add "implement interface_name" in structure definition. That will add clarity in code. Right?

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

    As far as I've understood it, they're basically like a class in C++ where everything is virtual. Generally we'd refer to that as an abstract class. That and error codes instead of exceptions I copied as features for my own language. I don't like that they use it as a sort of replacement for genericity syntax though. It's basically another void pointer, but with the requirements for casting turned 180 degrees. So better, but not good enough in my opinion. Looks like you do both Rust and Go, but perhaps you should add more languages to your repertoire like plain C and demonstrate how different constructs work at a fundamental level by converting them to C.

  • @adigunolamide3230
    @adigunolamide3230 3 місяці тому +1

    Your videos are amazing.

    • @FloWoelki
      @FloWoelki  3 місяці тому +1

      Thank you so much! :)

  • @melihdev
    @melihdev Місяць тому

    Can you explain the layered architecture in go?

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

    Nice video, but on the language accordance with logic of interface design, let's said that a Shape has a perimeter. So it does reduce the understand about what is the idea to implement a new interface to any duty contract.
    I would better think about Position as a new interface. Because a shape will have any area, perimeter by logic. But the position it can have is not due to the fact it is a shape, but because this shape can be somewhere. So, for example, An interface named Object can be the resulted union about Shape and Position.
    This (in my mind) is the way to think about contract interface in Golang (and most probably, in interface in general).
    Tell me if you are ok with this observation, please.

  • @karlrichardson7548
    @karlrichardson7548 3 місяці тому +1

    Thanks This helped a lot.

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

      I am glad it helped :)

  • @KaustubhDeokar
    @KaustubhDeokar Місяць тому +1

    thank you so much

    • @FloWoelki
      @FloWoelki  Місяць тому

      Glad I could help you :)

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

    This was great!

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

      I am glad you've liked it :)

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

    Thanks so much 💝 this really helped me, keep on goin

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

      You're welcome 😊

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

    Nice explanation my friend!

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

      Thank you! Cheers!

  • @karthikm.1804
    @karthikm.1804 4 місяці тому

    Nice explanation, please bring video on golang projects too

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

      Thank you! I'll try my best :)

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

    Nice explanation. Thanks. Subscribed.

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

      Awesome, thank you!

  • @sammyj29
    @sammyj29 2 місяці тому

    Great stuff! Subbed

    • @FloWoelki
      @FloWoelki  2 місяці тому

      Much appreciated! :)

  • @joselima7655
    @joselima7655 3 місяці тому +1

    Very nice! Thank you +sub

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

    excellent..Thx a lot

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

      Thank you for watching :)

  • @saifmohammed1481
    @saifmohammed1481 14 днів тому +1

    Unless im missing something, its Honestly a bad design by Go designers. How would I know what interfaces a type implements off the bat ?

    • @FloWoelki
      @FloWoelki  12 днів тому

      You are not missing anything! I personally also think that it is not always 100% clear if a struct uses a specific interface. I like more the explicit design, like in other languages.

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

    What is the font name?

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

      I am using `monaspace` :)

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

      I knew I could rely on this already being asked 😂

  • @berserk.4121
    @berserk.4121 3 місяці тому

    thanks

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

    👌

  • @AbhinavNair-x8t
    @AbhinavNair-x8t 2 місяці тому

    ur explanation is very good but please change the background music. I makes us sleepy

    • @FloWoelki
      @FloWoelki  2 місяці тому

      Well, it's kind of a vibe :D It should be relaxing and enjoyable to watch the video. Usually, I just have some music at the beginning and at the end of the video.

  • @maguilecutty
    @maguilecutty Місяць тому +1

    The shape interface is the same explanation everywhere. Why can’t someone make a video with thing we would actually use so the real world usage would make sense

    • @panagiotisdoukas4085
      @panagiotisdoukas4085 27 днів тому +1

      Because of the unoriginality of our era. What get's me though is when I watch a video with a title like this one which says that you are not going to need another tutorial and then proceeds to copy the same examples and same way of presenting the information from other videos.

    • @FloWoelki
      @FloWoelki  27 днів тому

      Thank you both for the valuable feedback! Do you know how to showcase the concepts in a more real-world use case? I am currently experimenting with different videos with simple projects (like a text analyzer) to apply the learned concept at the end of the video.

    • @maguilecutty
      @maguilecutty 27 днів тому

      @@FloWoelki Think of something you impliment everyday. Im writing GRPC microservices everyday, creating factories, builder models etc. Maybe just a simple user database writer? Also, something that REALLY GETS MY GOAT (can you tell?) is that every dev on yt just writes a main.go file. Dont be lazy and actually impliment the hex model like you would write an actual service and show how it all works together. This will be INVALUABLE to new devs learnign go!

  • @atljBoss
    @atljBoss 4 місяці тому +5

    implicit implementation of interfaces is a bit weird in Go. Would prefer the rusty way!

    • @FloWoelki
      @FloWoelki  4 місяці тому +5

      I prefer the explicit interface implementation as well, because things are much clearer.

    • @jordanhasgul4401
      @jordanhasgul4401 4 місяці тому +5

      If you want to make it clear that a struct implements a particular interface, you can do a compile time assertion.
      var _ MyInterface = (*MyStruct)(nil)
      So you get the explicitness while still allowing consumers to define their own interfaces for which your struct can also satisfy.
      Not saying to do this, just sharing some knowledge.

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

      @@jordanhasgul4401 Damm didn't know this, thanks!

    • @albizutoday2754
      @albizutoday2754 Місяць тому +1

      Is Rust gay?

    • @panagiotisdoukas4085
      @panagiotisdoukas4085 27 днів тому

      Yes. I heard it is

  • @dixztube
    @dixztube 2 місяці тому

    Took me a good year before it just for some reason made sense lol now it’s like oh ya I get but the explanations are ugh idk I don’t like the contract explanation

  • @meryplays8952
    @meryplays8952 Місяць тому +1

    Does not cover type constraints. For example type Likeint interface {~int}