This Will Make Everyone Understand Golang Interfaces

► Join my Discord community for free education 👉 / discord
► Exclusive Lessons, Mentorship, And Videos 👉 / anthonygg_
► Enjoy a 50% Discount on My Golang Course 👉 fulltimegodev.com
► Learn how I became a self-taught software engineer 👉fulltimegodev.com/#mystory
► Follow me on Twitter 👉 / anthdm
► Follow me on GitHub 👉 github.com/anthdm
SUBSCRIBE OR NO MARGARITAS
╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
╠╗║╚╝║║╠╗║╚╣║║║║║═╣
╚═╩══╩═╩═╩═╩╝╚╩═╩═╝

Пікірлер: 125

  • @anthonygg_
    @anthonygg_9 ай бұрын

    ► Join my Discord community for free education 👉 discord.com/invite/Ac7CWREe58 ► Exclusive Lessons, Mentorship, And Videos 👉 www.patreon.com/anthonygg_ ► 50% OFF on my Golang course 👉 fulltimegodev.com Thanks for watching

  • @linuxshell8804
    @linuxshell88043 ай бұрын

    Johnny Sins is truly a modern polymath!

  • @anibaldk
    @anibaldk4 ай бұрын

    Something to point out - a BIG difference from other programming languages - is that the type (in this case CR7, Messi or FootballPlayer) does not explicitly implement the interface as it would for example, in C# or Java where the class declares implementing it. Instead, it is enforced by the Go compiler which checks the function to be declared for the type.

  • @justanaveragebalkan

    @justanaveragebalkan

    2 ай бұрын

    How would that work in the case of the following INewsService -> Get() [] News and ICacheRepository -> Get() []News. How does that cultist dark art work in that given scenario, would the compiler be like, no you stupid human, you can't declare a method Get twice because it's already used somewhere else or is it going to be fine, you know what you're doing and execute both the Cache and NewService implementation each time we call it either ICacheRepository or INewService?

  • @crade47
    @crade479 ай бұрын

    The last part of the video where you added Name() was so important to understand and grasp the "contract" analogy fully, good vid

  • @MrAverageViewer
    @MrAverageViewer9 ай бұрын

    THANK YOU again, Anthony, for demystifying complex concepts, with easy-to-understand real-world analogies most people can relate to!

  • @rosehogenson1398
    @rosehogenson13989 ай бұрын

    #1 rule: don't define an interface until you have more than one implementation

  • @anthonygg_

    @anthonygg_

    9 ай бұрын

    Yeah I like that thinking

  • @salman0ansari

    @salman0ansari

    9 ай бұрын

    Why?

  • @gearboxworks

    @gearboxworks

    9 ай бұрын

    Hmmm, not exactly. As one use-case where that would not necessarily be true would be when using an interface to resolve cyclic dependencies across packages. Another use-case is when *you* have only one implementation, but you want to enable others to but able to pass in their implementations. In a nutshell, interfaces in Go are very powerful and there are more than just one want to leverage them.

  • @livingintheabstraction

    @livingintheabstraction

    9 ай бұрын

    Rule 1: Plan and define the abstract first before jumping into the coding part.

  • @rosehogenson1398

    @rosehogenson1398

    9 ай бұрын

    @@salman0ansari Having more than one implementation allows you to see clearly where the common behavior is. If you define an interface with only one implementation, first of all it's usually unnecessary, but also it's too tempting to put every single one of the implementation struct's methods into the interface. That makes it hard to add any new implementations, because they have to define every single method that the original struct did, even if not all of them are relevant for the new implementation. Waiting to define interfaces avoids over-abstracting, and helps to keep your interfaces minimal and focused. "The bigger the interface, the weaker the abstraction"

  • @ranilmadawalage1897
    @ranilmadawalage18979 ай бұрын

    This clears things up for interfaces with GO. Keep up the good work !

  • @tnypxl
    @tnypxl9 ай бұрын

    Interfaces are the only thing I struggle with in Golang (well, that and channels/concurrency)

  • @fullstackwithsantosh

    @fullstackwithsantosh

    Ай бұрын

    Relatable.

  • @earnstein7607

    @earnstein7607

    Ай бұрын

    How are you doing now? I'm just getting started

  • @vilenczi
    @vilencziАй бұрын

    After 7+ years of senior python thinking for me this was the 'AHA' moment right here: " team := make([]Player, 11) for i := 0; i I was like 'what???, you can loop over a slice of "capabilites", not just actual objects???" I think this opens a whole range of different design ideas, way of decouplig, testing, etc. Cos you're focusing on the capability, not the object / instance or whatever. Now the term 'contract' makes a lot more sense. Because you are saying, hey I don't care WHAT you are as long as you CAN DO this or that. BTW, thanks a lot Anthony! In addition to the depth of your (applicable real life) knowldge I really like your style. Feels likehaving a coding conversation in pub w. a beer. :)

  • @Fep_Aguilar
    @Fep_Aguilar4 ай бұрын

    I'm just discovering this channel and I got suscribed just right now! Good job my man

  • @anthonygg_

    @anthonygg_

    4 ай бұрын

    ❤️

  • @rockkley9159
    @rockkley91599 ай бұрын

    Just in time when I started to face the problem of understanding interfaces in go. Thanks, you really helped me

  • @nanonkay5669
    @nanonkay56699 ай бұрын

    How I think of an interface is that it is a struct but for functions. So while a struct describes what properties an "object" has, and an interface defines what functions an "object" has, though not only limited to those functions. So as long as your object has all the functions in the interface, it implements that interface. Meaning if you have a function or method that only works at an interface level, that "object" is a valid candidate.

  • @GOTHICforLIFE1
    @GOTHICforLIFE19 ай бұрын

    I think the explanation is decent, but i do also think it would be beneficial to have a followup where you truly see the benefits of interfaces. Maybe in combination with a strategy pattern where it's commonly used. Strategy patterns are pretty mandatory to understand as a professional developer imo. It's where i learned to understand interfaces, as it's a perfect place to use it.

  • @anthonygg_

    @anthonygg_

    9 ай бұрын

    Good idea . I have some more complex interface vids. I thought to keep it super simple for this one.

  • @perc-ai

    @perc-ai

    9 ай бұрын

    @@anthonygg_nah dude we need more complex ones show us actual software engineering strategies / implementation

  • @AbdulWahab-ev2ct
    @AbdulWahab-ev2ct11 күн бұрын

    This is gold. very very well explained. Thanks for your work Anthony!

  • @MykMallett
    @MykMallett9 ай бұрын

    I find that the biggest problems with interfaces in Go is that people have pre existing ideas for how they should be designed, ie defining the interface first with the implementation. In Go you don't do this, you define an interface where you want to use it. Because they are implicit rather than explicit it's almost a complete reversal of thinking, and it catches a lot of people out.

  • @x0z59
    @x0z599 ай бұрын

    You're the most enthusiastic and incredible! Well you got it, INCREDIBLE golang guru I have ever watched in youtube! you deserve millions of subs, bro!

  • @mohamadbt4055
    @mohamadbt40559 ай бұрын

    it definitely helped me out to understand interface better thanks a lot

  • @SiCrip09
    @SiCrip093 ай бұрын

    Thanks for this! You gave me that big AHA and thumbs up for using VIM 🎉

  • @___DS___
    @___DS___9 ай бұрын

    Hello, mate I extremely love ur content. I was curious about ur course (despite the price), so had a look into it. As a dev with 7 months of commercial exp in go (microservice architecture) (2,5 years overall) I can tell ur course (imho) lacking very important aspect (from the glance to the full course description) - and it's work with DB. Especially, when u need to do bunch of aggregations, hit the endpoint from one service to another, sending bunch of some data to sync and upsert relative data in the db of the other microservice, etc. etc. Mb I'm wrong and didn't notice that in the list, but without this I reckon course isn't complete at all. Anyways, thanks for what u r doing.

  • @Jam-ht2ky
    @Jam-ht2ky9 ай бұрын

    Love your videos man. Thank you for making the best videos on golang

  • @mareksvitok8702
    @mareksvitok87029 ай бұрын

    Hi Anthony, I'd like to ask you, why did you move to vscode from nvim? Just curious.

  • @seidigapbar
    @seidigapbar9 ай бұрын

    Hi Anthony, hilarious thumbnail, made me chuckle! Love your content :)

  • @anthonygg_

    @anthonygg_

    9 ай бұрын

    Haha thx

  • @ben.thornhill
    @ben.thornhill9 ай бұрын

    If I ever find myself in Belgium, I'm gonna reach out to meet up. You're the man.

  • @eldr-io
    @eldr-io3 ай бұрын

    This is a great video, good job!

  • @manankoyawala5337
    @manankoyawala53374 ай бұрын

    This example is clears my entire doubt about the interface in golang. Thank you ❤

  • @SakenBerdibekov
    @SakenBerdibekov9 ай бұрын

    Hi Anthony, how do you use rand without seeding?

  • @TehKarmalizer
    @TehKarmalizer5 ай бұрын

    I think the confusion primarily comes from Go interfaces being more descriptive than prescriptive. You don’t declare you are implementing an interface for a type, so there is no checking whether a type actually implements it until you try to use it as interpreted by the interface.

  • @leopet6815
    @leopet68156 ай бұрын

    Thank you! That did help a lot. I was wondering if I could do something better because I almost never declared my own interfaces. I actually calmed down a bit because a lot of my code is very interconnected with the database...and my logic used interfaces that were already made for me by the db engines and stuff

  • @dazealex
    @dazealex6 ай бұрын

    Are you using some kind of Vim plugin for VSC? You're super fast with. Any hints on getting that good at text/code editing?

  • @ForeverZer0
    @ForeverZer09 ай бұрын

    I personally think the biggest "gotcha" with learning interfaces coming from different languages is the dual behavior they have: either as a type constraint, or the traditional "thing that implements", but not both simultaneously. You can use an interface as a field in struct if it implements functions, but if you change it to a type constraint, it no longer works. When I was initially learning Go, this was unexpected to me.

  • @abhinayshukla2215
    @abhinayshukla22158 ай бұрын

    Anthony I have a question if I made a receiver function on a struct which is global access but my struct is private so how do I unit test that

  • @virium.8372
    @virium.83729 ай бұрын

    do you think you could make a video on tui on a telnet/ssh server? im currently trying to make a casino for fun so me and my friends can play but i cant seem to make any good tui for instance i cant get it to work on the ssh server

  • @MCDyma
    @MCDyma9 ай бұрын

    This video was included in the recommendation of Go Weekly

  • @vincenthou6459
    @vincenthou64594 ай бұрын

    14:26 Roberto Carlos, 14:29 Arjen Robben. I am from the time of these people's. 13:48 Belgian goalie. I was there as well, coz I used to study in Belgium. This is a good video, catching my past.

  • @First_Lst
    @First_Lst9 ай бұрын

    Great video!

  • @ade_niko
    @ade_niko5 ай бұрын

    Always thought Arjen Robben was a Rust guy

  • @anthonygg_

    @anthonygg_

    5 ай бұрын

    😂

  • @abdulrahmanmohamed8298
    @abdulrahmanmohamed82989 ай бұрын

    Ive been binging many of your Golang vids and find em really helpful. Thanks for your tips and insight Anthony. btw anyone know what vscode theme he's using?

  • @anthonygg_

    @anthonygg_

    9 ай бұрын

    Im using gruvbox. The hard contrast version. 😼

  • @pythonantole9892
    @pythonantole98929 ай бұрын

    What theme are you using on VSCode. Looks very sleek!

  • @anthonygg_

    @anthonygg_

    9 ай бұрын

    Gruvbox

  • @rexxDigital
    @rexxDigital9 ай бұрын

    This made me understand golang interfaces! +1

  • @homelessrobot

    @homelessrobot

    9 ай бұрын

    you had no choice in the matter...

  • @user-sb9nt9ho6d
    @user-sb9nt9ho6d2 ай бұрын

    Great video.

  • @user-nl2lk2js9p
    @user-nl2lk2js9pАй бұрын

    In your other video you have said that we should not create a lot of files. But I think it would be perfect to place CR7, Messi and FootballPlayer into different files (if for instance they had larger logic inside). Isn't it?)

  • @salman0ansari
    @salman0ansari9 ай бұрын

    can you make a video with practical use of interfaces?

  • @damm_coder4550
    @damm_coder45504 ай бұрын

    😂😂Got to learn with comedy characters! CR7 and Suuuii Fked Little less messi 🤣 15:41

  • @RooterDelWifiXs
    @RooterDelWifiXs4 ай бұрын

    What is your vscode theme?

  • @manfrombritain6816
    @manfrombritain68164 ай бұрын

    mutexes locking, DELTS POPPING

  • @sanjayshiradwade
    @sanjayshiradwade9 ай бұрын

    This is how it looks without interfaces, As you'll see, it becomes messier and less scalable. package main import ( "fmt" "math/rand" ) type Rolando struct { name string stamina int power int sPower int } type Messi struct { name string stamina int power int sPower int } type FootbalPlayer struct { name string stamina int power int } func KickBallExample(player interface{}) { switch p := player.(type) { case Rolando: shot := p.stamina + p.power + p.sPower fmt.Printf("%sshot: %d ", p. name, shot) case Messi: shot := p.stamina + p.power + p.sPower fmt.Printf("%sshot: %d ", p. name, shot) case FootbalPlayer: shot := p.stamina + p.power fmt.Printf("%sshot: %d ", p. name, shot) default: fmt.Println("Unknown player type") } } func main() { team := make([]interface{}, 11) for i := 0; i team[i] = FootbalPlayer{ stamina: rand.Intn(10), power: rand.Intn(10), name: "random", } } team[len(team)-2] = Rolando{ stamina: 10, power: 10, sPower: 10, name: "Ronaldo", } team[len(team)-1] = Messi{ stamina: 10, power: 10, sPower: 8, name: "Messi", } for i, player := range team { KickBallExample(player) } }

  • @anthonygg_

    @anthonygg_

    9 ай бұрын

    It becomes messi (er)

  • @sanjayshiradwade

    @sanjayshiradwade

    9 ай бұрын

    @@anthonygg_ 🤣 right, Go-God

  • @brieuclecarluer2769
    @brieuclecarluer27698 ай бұрын

    best Golang teacher ever

  • @md.saifulislam6528
    @md.saifulislam65284 ай бұрын

    Good one

  • @abhinayshukla2215
    @abhinayshukla22158 ай бұрын

    Weather it is handler function or webserver or service layer or repo layer mocking everything

  • @albertoguzman9390
    @albertoguzman93905 ай бұрын

    Hi guys! can someone explain to me why rand.Intn(10) return values greater than 10?, it should return a value between (0,n) but no greater than, right?

  • @dukeofnorfolk1842
    @dukeofnorfolk18425 ай бұрын

    You know the "append()" function exist 😂

  • @adilfarq3784
    @adilfarq37849 ай бұрын

    U are my best teacher 😊

  • @IzanakiTheCreator
    @IzanakiTheCreator7 ай бұрын

    what's Anthony's vs code theme?

  • @anthonygg_

    @anthonygg_

    7 ай бұрын

    Gruvbox

  • @FekuEntertainmentLtd
    @FekuEntertainmentLtd3 ай бұрын

    Hey Anthony, I've recently been getting your video suggestions on YT since I just started with Golang. I don't if anybody has mentioned this to you, But in your video the voice is very low. Please check it out and thank you for the knowledge you share.

  • @LarsKniep
    @LarsKniep9 ай бұрын

    You can even let your mom enter the football team as long as she can 'KickBall()' She isnt even a football player, but it doesn't matter ;-)

  • @BinaryMaestro1
    @BinaryMaestro13 ай бұрын

    thanks

  • @kamilziemian995
    @kamilziemian9954 ай бұрын

    Good tutorial.

  • @axMf3qTI
    @axMf3qTI4 ай бұрын

    So we make a slice with a type Player and populate that slice with FootballPlayers and nowhere else we tell the program that football players are indeed players? Snap jij het nog?

  • @alexandrodisla6285
    @alexandrodisla62859 ай бұрын

    Well I am from a third world country. The pricing of your course is basically more than half my salary. If it was on udemy at a low price I would buy it. Or if it was 15-30$ a month I would buy it. I love your style. thanks for the youtube videos.

  • @androth1502
    @androth15023 ай бұрын

    it doesn't seem easily scalable. add one function to the interface and now you have to make potentially dozens of changes.

  • @vanvanni_nl
    @vanvanni_nl4 ай бұрын

    I just wonder, all the base calculations are the same. Power + Stamina. So can you abstract that to something and apply that to all. So kickBall = getBasePower on the FootballPlayer and on CR7 kickball = getBasePower * SUI

  • @lucy-pero
    @lucy-pero9 ай бұрын

    sorry i don't code in Go but how can you allocate an Interface instead of a struct? how does it even know the size of what it is allocating? in order for this to work, Go is doing some wild magic behind the scenes. Maybe it allocates a base struct with virtual methods? This seems pretty bad for performance and other things.

  • @rosehogenson1398

    @rosehogenson1398

    9 ай бұрын

    Virtual methods is the right idea. An interface in go is represented as 2 words: a pointer to the virtual method lookup table, and a pointer to the data itself.

  • @lucy-pero

    @lucy-pero

    9 ай бұрын

    @@rosehogenson1398 i see. thank you!

  • @TheMouseJerry-du1md
    @TheMouseJerry-du1mdАй бұрын

    thank u, but it would be more usuful if you can show how interfaces and structs present in 3rd party packages can be used in your own application and the patterns potentially be used

  • @anthonygg_
    @anthonygg_4 ай бұрын

  • @user-zz3tz5fi1b
    @user-zz3tz5fi1b6 ай бұрын

    Love your channel, you know what i mean?

  • @anthonygg_

    @anthonygg_

    6 ай бұрын

    Thanks man. Yeah I know 😂

  • @sagimor8646
    @sagimor86467 ай бұрын

    Thank you Anthony, great video but for some reason every time CR7 getting higher score than Messi Go seems to Panic.

  • @anthonygg_

    @anthonygg_

    7 ай бұрын

    Haha good one.

  • @manishbadgotra
    @manishbadgotra7 ай бұрын

    Can we Indian’s have a discount over this 250 dollar price, because of Purchase power parity this amount is little expensive for students to buy?

  • @deniyii
    @deniyii9 ай бұрын

    😂😂😂😂 The ronaldo love was too funny

  • @demyk214
    @demyk2149 ай бұрын

    Voetbal😂 i catch u slacking again brodie

  • @anthonygg_

    @anthonygg_

    9 ай бұрын

    Fuck 😂

  • @patrickkdev
    @patrickkdev18 күн бұрын

    I love your videos but I really want to leverage interfaces and I don't think this example was very good. In this cenario, it would be simpler to just have the name and sui factor fields in the original FootballPlayer struct and set them to default values ("" and 0) for regular players rather then creating new structures for special players Edit: The example was good for understanding how they work, but not for learning how to leverage them I know how to use interfaces but it is hard for me to think of solutions using them rather then something else

  • @anthonygg_

    @anthonygg_

    18 күн бұрын

    You might have a point here.

  • @zbaktube
    @zbaktube8 ай бұрын

    In soccer if you have only 11 players, even the ones with shot 1 will stay off the bench for the whole season ;-) 🙂

  • @konsumgandalf8006
    @konsumgandalf80065 ай бұрын

    U should train more

  • @anthonygg_

    @anthonygg_

    5 ай бұрын

    I agree.

  • @vitorvaz6281
    @vitorvaz6281Ай бұрын

    Thank you johnny sins XD

  • @as27
    @as279 ай бұрын

    First thank you for your passion it is great to show how much fun developing is. But your code is not a good example. If you have a slice you should use range. To use for, looks a little bit like old JavaScript to me. Also the explanation of the interface is how interfaces works in general. It is a good explanation, but it does not cover the Go specific approach. The goal of defining an interface is that the consumer can define the interface. If you have a function "kickIt(players []player)" the kickIt-package can define the interface. The packages "basketball", "americanfootball", "soccer" even don't need to know that there is an interface. There is not "type a implements interface player" in Go. This makes the packages more flexible.This is the idea of interfaces in Go.

  • @anthonygg_

    @anthonygg_

    9 ай бұрын

    Ok buddy

  • @kevinb1594
    @kevinb15949 ай бұрын

    Do CONTEXT next

  • @anibaldk
    @anibaldk4 ай бұрын

    Explanation was spot on but you don't get my like for suggesting Ronaldo's shots were more powerful than Messi's. Just joking.

  • @AlgyTRG
    @AlgyTRG4 ай бұрын

    how is that Messi SUI, probably the greatest player in history, is lower than CR7? c'mon!

  • @abhinayshukla2215
    @abhinayshukla22158 ай бұрын

    Please make a full fledge unit test , integration test on all possible scenarios

  • @jonathanlambrecht5642
    @jonathanlambrecht56427 ай бұрын

    i found a big mistake in your video, Messi>ronaldo.

  • @user-zq8bt6hv9k
    @user-zq8bt6hv9k9 ай бұрын

    Next video, explain crazy function with interface interface * wtf

  • @user-zq8bt6hv9k

    @user-zq8bt6hv9k

    9 ай бұрын

    As parameters

  • @gocanto
    @gocanto9 ай бұрын

    Course is still pricy :/

  • @birenbharat
    @birenbharat4 ай бұрын

    to much time for small concept

  • @indrranil24
    @indrranil242 ай бұрын

    suiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii

  • @serhioromano
    @serhioromano4 ай бұрын

    You are a smart guy and have great point in your videos. But the problem I have with it, after spearing more than 20 minutes snatching this I realized that you lost a lot of my time. You could explain this concept in less that 10 minutes without losing quality. Please make your videos shorter. This is why but the end of this video I lost interest to purchase you choose. If you talk so much empty words there I'll lose a lot of time. I do not want to pay someone to entertain me. I need knowledge. And I'm an sorry, no one will tell you that nowadays, but you are not that funny, but you are defensively very experienced developer. This is you doing past. Lean on it.

  • @victorburca5028
    @victorburca50282 ай бұрын

    bla-bla-bla... I am here to learn how to code GO, not to listen to a parrot.

  • @anthonygg_

    @anthonygg_

    2 ай бұрын

    Shut up Timmy and bring me my coffee.

  • @MENTOKz
    @MENTOKz9 ай бұрын

    i get it so cr7 is better than messi 😂

  • @kiritocyanpine5018
    @kiritocyanpine50189 ай бұрын

    The interface paradox I face when developing a feature, "when to implement an interface?" ... 🫥