Beginners Should Think Differently When Writing Golang

Sdílet
Vložit
  • čas přidán 3. 09. 2023
  • ► 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
    ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
    ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
    ╠╗║╚╝║║╠╗║╚╣║║║║║═╣
    ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝

Komentáře • 217

  • @anthonygg_
    @anthonygg_  Před 8 měsíci +5

    ► 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

    • @alievaslan
      @alievaslan Před 8 měsíci

      Thanks for content! Anthony, which color scheme you use for code?

  • @RubinGhimire
    @RubinGhimire Před 7 měsíci +94

    Good explanation. As a note to others still confused, structs are passed by value by default in Go (what Anthony means by copy; it's not the original, remember that) and thus when we create a pointer we have a reference to the memory, which will not be cleared with the function stack.

    • @anthonygg_
      @anthonygg_  Před 7 měsíci +23

      Thanks. 100% correct

    • @seymour_videos
      @seymour_videos Před 7 měsíci +5

      When he said that I immediately thought if Go does that by default. Thanks for clearing that up.

    • @yegorzakharov8514
      @yegorzakharov8514 Před 4 měsíci +8

      Go passes everything by value, not just structs

    • @TehKarmalizer
      @TehKarmalizer Před 3 měsíci +4

      @@yegorzakharov8514 so does C#, but some of its types are essentially pointers by default, so that’s what you’re copying as a parameter.

    • @cat-.-
      @cat-.- Před 2 měsíci +1

      @@yegorzakharov8514yeah but sometimes the “data” being passed contains a pointer

  • @joshi1q2w3e
    @joshi1q2w3e Před 8 měsíci +47

    Dude… thank you so much for this, cause I literally asked you about this yesterday and today you have a video on it. God bless man!

  • @wadecodez
    @wadecodez Před 6 měsíci +61

    For anyone looking to better understand Go, I'd recommend implementing OOP in pure C. Structs are essentially wrappers that hold data so you can easily manipulate related information. Methods are just functions with an inferred argument, and access modifiers are just structs that forward method calls to internal structs.

    • @avid459
      @avid459 Před 3 měsíci +11

      Where 'this' is the default argument.

  • @Allr3dc
    @Allr3dc Před 8 měsíci +58

    Wish this video existed when I first started writing Go. Really well done and easy to understand for OOP programmers starting Go!

    • @DaniilHarik
      @DaniilHarik Před 8 měsíci +1

      same words, accepted the Go way long ago, but the "syntax sugar" example made things connect in my head better

    • @avonflex5031
      @avonflex5031 Před 7 měsíci

      How does he move the cursor quickly up and down while typing ?

    • @romanferguson4032
      @romanferguson4032 Před 5 měsíci

      it looks like he is using vim movement.@@avonflex5031

    • @anton9410
      @anton9410 Před 3 měsíci

      @@avonflex5031 vim

    • @kurshadqaya1684
      @kurshadqaya1684 Před 2 měsíci

      @@avonflex5031, it is called VIM motions.

  • @axisaligned9799
    @axisaligned9799 Před 8 měsíci +21

    The structs in Go, C, Rust are just the data. In memory there only exists the data.
    In python and JavaScript each piece of object comes with the data just as the previous language, BUT it also has a bunch of other data that is not what u declared, for example a pointer to its class and the methods. For python for example it even holds onto the methods.
    1st type of Language:
    [an object]
    - field 1
    - field 2
    And then somewhere else you have:
    - function 1 that takes in the type of struct as an argument
    Whereas the 2nd types of languages:
    [an object]
    - field 1
    - field 2
    - method 1
    - method 2
    - class metadata
    …..
    This roughly can be what u can imagine the general differences

    • @anthonygg_
      @anthonygg_  Před 8 měsíci +6

      Thanks for the detailed amend

    • @manuelquiroga8022
      @manuelquiroga8022 Před 8 měsíci +3

      Cool explanation. Coming (and still mostly coding in) JS and Python, I'm loving Go's approach

    • @tomasslavik1119
      @tomasslavik1119 Před 6 měsíci

      Anything is procedural underlying. Whole OOP is fake somehow, there are data and data and data and data. Rules of privilege modifications and metaclasses are kinda mix of syntactic sugar and compiler/interpreter rules, which don't allow to compile run something which is completely possible if written in asm or something.
      Can't access private member? Nothing existing in C. C program usually can get in all memory program get from OS, there is nothing banned.
      OOP is cannot be done or implemented in asm, it's completely in scope of interpreter/compiler, but everything ends as asm code (or VM bytecode of you want) - but everything at the end, before executing, is machine code or one step before machine code - and there is no way how to do OOP in machine code, it can be only do by higher level filter which dones't allow somethinf what not fit OOP paradigm but in fact it is still doable by machine code and computer itself.
      So behind everything, from OOP to functional approach, is just a C-like or asm approach - memory and functions. Nothing more.

    • @adexitum
      @adexitum Před 6 měsíci

      But if struct has methods attached to it, then every object of that type will have some data about its methods silently embedded by compiler? So it's not like in Go "objects" have only fields while in JS they've also got methods and class metadata... Or am I missing something?

    • @axisaligned9799
      @axisaligned9799 Před 6 měsíci +3

      @@adexitum im not sure I understand the question, the structs in Go, Rust, C are only the fields. Since the compiler always knows the type it does not need to embed the methods in the struct itself. if you use interfaces the struct WILL contain extra vtable data to be able to know which method to call.
      in JS its prototype-based so each object points to the class it belongs to and from there u can figure out which methods it has. but you can also dynamically add and remove methods, especially in python. so the objects are usually alot more bloated due to the dynamic and flexible nature of them

  • @hamedbalanar5127
    @hamedbalanar5127 Před 8 měsíci +1

    Your examples made my confusions alot clear, ty alot

  • @aleclowry7654
    @aleclowry7654 Před 8 měsíci +10

    One thing that I like about hanging functions off of structs is that code bases are far more discoverable via lsp

    • @ES-eb6pb
      @ES-eb6pb Před 6 měsíci +5

      yeah dont take the advise of this youtuber, seems dumb advice tbh

  • @tornikegogberashvili3131
    @tornikegogberashvili3131 Před 5 měsíci +1

    Thnak you for your content! Always useful videos. Keep up the good work! 🚀

  • @vijayb3133
    @vijayb3133 Před 8 měsíci +22

    I come from a Python background. When I started learning Go, I found myself constantly comparing its features with Python, which made my understanding a bit difficult. However, this video completely changed my perspective on how I should approach learning Golang.🙇

    • @dejfcold
      @dejfcold Před 8 měsíci

      I don't have a py background, but also compared it to py :D

  • @joshkny
    @joshkny Před 2 měsíci +1

    This was the first in a series of big breakthroughs for me using GO. Thank you, Anthony!

  • @lokthar6314
    @lokthar6314 Před 8 měsíci +1

    When using SDKs, then most of the time instead of finding pure functions, you get structs that wrap methods e.g. myDbConnection.PutItem(context.TODO, ¶ms) instead of dbpackage.PutItem(myDbConnection, context, ¶ms).
    Do you consider this bad, as it follows the "bad practice" pattern you showed with the book example in the video?

  • @kumekster
    @kumekster Před 2 měsíci +2

    I struggled to understand pointers and your explanation was mind opening. Kudos.

  • @XxMissingDataxX
    @XxMissingDataxX Před 8 měsíci +1

    Good video. Can you do interfaces?

  • @BanAaron
    @BanAaron Před 7 měsíci +4

    I am not usually one to wax poetic about programming languages, but this video is really something cool. When you were showing that func (book Book) saveBook() {} is the same as func saveBook(book *Book) {} everything feel into place in my mind

  • @gmdias0_
    @gmdias0_ Před 8 měsíci +1

    Anthony, what;s your vscode theme?

  • @khaledmohammad8671
    @khaledmohammad8671 Před 3 měsíci

    Loved it, you cleared it up pretty well! Kudos to you!

  • @XternalArchives
    @XternalArchives Před 8 měsíci +3

    I saw a comment saying interfaces, i think you should show when to use interfaces and methods. Good video.

  • @user-pm4so7qg2o
    @user-pm4so7qg2o Před 8 měsíci

    Hi @anthony
    the things is we written some test case using go Lang but when some of the function reading the file so with test cases it's given path error, my pkg it's in root folder can you help me here

  • @pserra94
    @pserra94 Před 8 měsíci

    amazing video, thanks! Anthony i was trying to buy your course but 50% discount wasnt working anymore

  • @christiang.8880
    @christiang.8880 Před 6 měsíci

    Hey thanks for that great video i just started with go. I was wondering how the compiler makes the link beween a pointer and the field issaved. Since the parameter is of type pointer the pointer itself does not hold a value or a field. Is there no need to point to a value first before changing the data?
    like
    func (book *Book){
    *book.issaved= true
    }

  • @rodrick2312
    @rodrick2312 Před 8 měsíci +1

    Thanks a lot for the video!!!!

  • @buddy.abc123
    @buddy.abc123 Před 8 měsíci +2

    Thanks man, I've started learning Go (coming from C#, C and Python) and this video just unlocked my light bulb moment

    • @anthonygg_
      @anthonygg_  Před 8 měsíci

      Happy I could help out. You will do great coming from those languages.

  • @Origin211
    @Origin211 Před 8 měsíci +1

    What extension/config are you using to emulate Vim modal editing within VSCode?

    • @anthonygg_
      @anthonygg_  Před 8 měsíci +1

      Default VIM plugin that comes with VSCODE

    • @Origin211
      @Origin211 Před 8 měsíci

      @@anthonygg_thx a lot! Very useful content❤

  • @and1595
    @and1595 Před 8 měsíci +4

    So, what is the common GO way of manipulating structs? Or is it just a personal preference whether a function or method is used?

    • @anthonygg_
      @anthonygg_  Před 8 měsíci +1

      U should use the Go method receivers. But I wanted to show that changing the syntax could give newcomers a better understanding whats going on

    • @chandler828
      @chandler828 Před 8 měsíci +1

      Like Anthony mentioned in a previous video, receivers are simply syntactical sugar for passing the struct to the function as a parameter. Whether that be a pointer or not. But, the go idiomatic way is definitely receivers. Lends to better readability.

    • @and1595
      @and1595 Před 8 měsíci

      gotcha, thank you

  • @GoodOpsec
    @GoodOpsec Před 4 měsíci

    I am starting out learning with Golang. I've completed the CompTIA ITF+ and Sec+, so I had to learn some python, and I've made a few tiny python projects (shh, but mostly with the help of chatgippity) I've studied enough to understand some of the fundamentals, and I've seen enough coding to were i feel like I know enough to actually start coding (and i know that can be wrong to do in some settings, but since i have the foresight to know this, assume it's okay for me to do this), and I was just wondering, what do you recommend I use to study? W3Schools + all possible sources + official go site? Thanks in advance.

  • @computersindia
    @computersindia Před 3 měsíci

    I enjoyed the way you explained for better understanding. Thanks!!

  • @sayassassin5781
    @sayassassin5781 Před 8 měsíci +3

    A lot of your explanations makes sense and I can agree. Coming from Java (especially Spring Boot 😒 ) and coding in Go for about 2,5 years now I am a bit confused.
    Lets assume you would save the book from your example in a database (for example a MongoDB or Postgres).
    My approach is to create a BookRepositoryInterface and a BookRepository which of course implements the interface.
    The Repository would have a save(book *Book) function. The database client would be set as a field in the repository (simple dependency injection). Of course this is simply imitating the practices from Java in Go, but I haven't found a better way till now.
    How would you achieve a "real" save to a database with your approach? I think it is a little bit abstract without a real world example.
    You need a client which manages the database communication and preferable you want only one and don't create new connections for every instance of the book struct so you would not loose performance.

    • @maximilianosorich554
      @maximilianosorich554 Před 7 měsíci

      I haven't touched Golang yet... but It seems the man of the video is being dogmatic. He talks about syntactic sugar as it should be prohibited... all high level language ARE SYNTACTIC SUGAR. And when talking about testing... how would you mock for unit testing... or you don't unit test... This man is crazy... Tomorrow I will take Golang to start learning, but I have seen other opinions opposed to the one presented here... For this man Clean Architecture would be shit

    • @franciscoflamenco
      @franciscoflamenco Před 7 měsíci +2

      @@maximilianosorich554 Not to be rude, but I think you didn't understand the video if you think he's making a point about (let alone against) syntactic sugar. He's merely explaining the difference between passing by reference vs. passing by value, which is something you don't usually have to think about in the higher level oop languages he mentioned.

  • @etfstrategy-vb2eo
    @etfstrategy-vb2eo Před 8 měsíci

    Good explanation. Method definitions perhaps are a bit more than syntactic sugar e.g. code organization for composition (interfaces).

  • @luciusstark
    @luciusstark Před 6 měsíci +1

    Fabulous tip! If I understood it correctly… It reminds me of Python programming when I need to think about dictionaries; on Bash, I think about IFS (word handling via word-splitting).

  • @foreveryoung6108
    @foreveryoung6108 Před 8 měsíci +3

    This is very importand fundamental concept that we should to know and not break using approaches from other languages. Keep it simple!

  • @adexitum
    @adexitum Před 6 měsíci +3

    It's also good to compare Go structs with interfaces in JS.
    Structs are just describing custom data types allowing us to make entities we are comfortable to work with

    • @eastern_european1968
      @eastern_european1968 Před 6 měsíci

      Now, that is a better explanation.
      Little nitpicking though, it's Typescript's feature.
      The interfaces are removed when transpilling TS → JS, as JS has no code structure like that.

  • @amirranjbar-vj4su
    @amirranjbar-vj4su Před měsícem +1

    I realy learned alot from you thank you so much! keep up the good work!

  • @abohm25
    @abohm25 Před 8 měsíci

    I thought you switched to neovim? What made you go back to vscode?

  • @KhaPiano
    @KhaPiano Před 7 měsíci +1

    This channel is a gem - binging all your videos as a Go learner

  • @dinhmai1268
    @dinhmai1268 Před 8 měsíci +1

    hi Anthony, what is the colorscheme u are using in the video?

    • @anthonygg_
      @anthonygg_  Před 8 měsíci

      Gruvbox the hard contrast one

  • @valentinzambelli9930
    @valentinzambelli9930 Před 8 měsíci +5

    My main issue with Go is that pointers overload so many concepts:
    - Nullable fields use pointers so that you can have nil | something
    - Mutability is determined (as you point out) by whether I pass a pointer or not
    - Sidenote here being that if I don't want to write Java style getters all fields need to be exported and therefore mutable by anyone
    - Passing by reference for optimisation purposes on large structs means passing in a pointer
    Especially the last thing really screws up the first 2. You might have a nice, non-nullable struct that is safe to pass around but for some reason it grows and now should be a pointer. all safety gets thrown out of the window. Go makes it very challenging to write safe code.

    • @eastern_european1968
      @eastern_european1968 Před 6 měsíci

      Minor issue: Go uses "nil" instead of more sane "null" (if only I could get a nickel for every time I type null instead of nil. )

  • @majixx
    @majixx Před 8 měsíci +4

    This is pretty much like C# with the only difference that it seems that Go is using value types by default. For example "class" in C# is reference type, while there is still "struct" which is value type. Also I'm not sure how Go exactly deals with concurrency, because the way you are showing how to modify the "Book" by it's pointer can cause concurrency issues in C#. Better approach IMO is to create a new "Book" and return it and not mutate the state of the existing "Book" (I'm sure you know it, but I wonder if this paradigm is the same in GoLang). Also in C# we now have "record" which allows us to mutate only the parts we want from an existing object and return a completely new one with copied values.

    • @anthonygg_
      @anthonygg_  Před 8 měsíci

      Pointers are always NOT safe for concurrent usage. Thats where channels come into play.

    • @majixx
      @majixx Před 8 měsíci

      Thank you @@anthonygg_ . I'm kind of new to Go and I still don't know all of its capabilities. Will read what "channels" are.Thanks!

  • @mareczekdynamit9497
    @mareczekdynamit9497 Před 7 měsíci +3

    Hi, what's this theme's name? Can someone provide info about VSC plugin name/url? Thx in advance

  • @farrela.846
    @farrela.846 Před měsícem +1

    Just fumbled around about this topic and the algorithm bless me with this vid. Thanks!

  • @hpygocrazy
    @hpygocrazy Před 8 měsíci +1

    Good explanation, however, you missed showing how the two variations of the func are called.

    • @anthonygg_
      @anthonygg_  Před 8 měsíci

      True. But I have several videos covering this aswel. This video was a specific exercise taking a step back

  • @1110Spirit
    @1110Spirit Před měsícem

    Hi @anthonygg_, Can we mutate the data in the structs without encapsulation ? by making the fields public without writing func with pointers to the struct ? It is a good approach to use a global state shared in the app ?

  • @hawk1278
    @hawk1278 Před 5 měsíci

    This was a great explanation for me to understand things better.

  • @forscale_banana
    @forscale_banana Před měsícem

    Great explainer video!! Keep up the good work!!

  • @abdulkhaliq-lo8gu
    @abdulkhaliq-lo8gu Před 3 měsíci

    if I'm not wrong, I visualized the struct as a columns in a table with different data types and you use functions to insert data .

  • @geekstakulus
    @geekstakulus Před 8 měsíci

    If you want to master Go, learn from its direct ascendent: Oberon. But, great points you brought.

  • @atomiorootshell2
    @atomiorootshell2 Před měsícem

    Thank you for sharing!

  • @human-011
    @human-011 Před 8 měsíci +2

    yes in JS and PY primitive data types are passed by value & non primitives are passed by reference automatically, one dont need to specify anything

    • @helmchen1239
      @helmchen1239 Před 7 měsíci

      This is the same in Go, except that "structs" belong to the "value types", if you want to call them that. slices, maps, channels, pointers and functions would then be what is commonly called a "reference type" so you dont really have to worry about pointers with those.

    • @saitaro
      @saitaro Před 2 měsíci

      Nothing is passed by value in Python, the whole data model is referencial. If you need a copy, you have to directly use copy() or deepcopy() functions.

  • @FareAlert
    @FareAlert Před 7 měsíci

    Awesome thank you :)

  • @oscartorres1669
    @oscartorres1669 Před 8 měsíci +1

    Really good information

  • @ralphwealth163
    @ralphwealth163 Před 8 měsíci

    amazing explanation

  • @tnypxl
    @tnypxl Před 8 měsíci

    When I first started learning golang I was absolutely flabbergasted that there was no concept of class inheritance. Really had get on-board with composition.

  • @moarte6
    @moarte6 Před 6 měsíci

    As someone deeply rooted in functional programming, I've developed a strong preference for immutable state, always returning new instances rather than mutating, and maintaining function purity. We've recently incorporated Go into our stack, and I'm finding the transition intriguing but challenging, given Go's procedural nature. I'm keen to adapt my FP principles within Go's framework. Does anyone have tips or experiences to share on approaching Go from a functional perspective?

  • @mohamadbt4055
    @mohamadbt4055 Před 8 měsíci +1

    thanks a log it was really good

  • @SeshachalamMalisetti
    @SeshachalamMalisetti Před 8 měsíci +2

    By adding methods to the structure, it can satisfy some interface else it is just plain data.

    • @rban123
      @rban123 Před 8 měsíci

      even if it doesnt have methods it can still satisfy an interface, if said interface doesnt have methods

  • @r0075h3ll
    @r0075h3ll Před 6 měsíci +1

    Basically, we are going to have to think more in terms of the memory(pointers, etc.) and not only values. Does this approach have any benefit to offer other than just making the writing and reading part easy when working with struct(or data structure)?

    • @eastern_european1968
      @eastern_european1968 Před 6 měsíci

      > think more in terms of the memory
      Not necessary. Go is garbage collected, and so you can code like you do in JavaScript or Python until you are ready for pointers. I am starting out with Go and I apply the same rules as JavaScript: Simply copy values of primitives / literals (int, float, bool, byte...) and for something bigger I use pointers & references (structures, slices, maps...)
      I really like the explanation of pointers here:
      czcams.com/video/sTFJtxJXkaY/video.html

  • @JacquesvanWyk
    @JacquesvanWyk Před 4 měsíci

    I am coming from PHP so these concepts feel really at home for me. Starting to learn Go and excited to see i am getting it from the start

  • @sameerjoshi1972
    @sameerjoshi1972 Před 6 měsíci +4

    I am working on Golang for 1 year and now I know that my understanding was totally wrong....one of the most required Golang videos if you are working on already written Go code. Thanks @Anthony GG

  • @matthewcollett2281
    @matthewcollett2281 Před 4 dny

    So then which way do I make the function? Is it like a best practice thing or what

  • @MuhammadFahreza
    @MuhammadFahreza Před 7 měsíci +1

    What is the theme of your vscode?

  • @user-pg2or3lx6r
    @user-pg2or3lx6r Před 7 měsíci

    Brother .....❤ more videos this simple and bird eye view teaching ...

  • @daz1uk
    @daz1uk Před 3 měsíci

    Brilliant explainer! Thanks.

  • @roshawnbrooks4091
    @roshawnbrooks4091 Před 5 měsíci +1

    Please don't be mad cause I'm learning Go currently. But does pointers replace Classes? like for pointer it points to the original "Book" and a class you can point to the original "Book" or make a copy of it?

    • @anthonygg_
      @anthonygg_  Před 5 měsíci

      Why would I be mad? 😊. No pointers do not replace classes. Pointers allow you to update memory directly.

  • @TehGettinq
    @TehGettinq Před 8 měsíci +3

    that's true of most oop languages, they pass the "this" pointer in every method signature under the hood. only difference is that the methods are mapped directly to the type's instance. Most languages actually do something closer to what go does (as compared to the mainstream oop languages named). Sadly go lacks some extremely useful type constructs like tagged unions and is very naive in his type design.

    • @metaltyphoon
      @metaltyphoon Před 8 měsíci

      To add more to this, most oop languages a class could have a “hidden” vtable pointer for any methods that are overridden by the derived class. Since go doesnt allow inheritance this doesnt exist.
      Simply put: Go struct is a “class” without inheritance and which allow you to specify read only methods.

    • @tomasslavik1119
      @tomasslavik1119 Před 6 měsíci

      I love this C approach. Doing everything manually. You can fully make OOP in C, with only one reason - when you try something like access private member from outside, compiler/interpreter of OOP language doesn't allow it. C allows it. So private loses its sense.
      But all things like constructor, inheritance, polymorphism and stuff, it can be all simulated in C - and even OOP languages compile into byte/machine code with machine/procedural approach, with a boilerplate and bloat of helping tables and tables and tables and tables... and whole stuff made just to make classes working. But it's just only a layer of abstraction, nothing more.

  • @FernandoDanko
    @FernandoDanko Před měsícem +3

    Short explanation: It's like C

  • @mickaelriga8169
    @mickaelriga8169 Před 7 měsíci

    Arguably it makes sense to also explain why you would use one over the other if they are the same. It does not make sense to call the other function "saveBook". Since it has a namespace it makes sense to call it "save". People coming from C know the pain of adding pseudo namespace to functions. And the joy of explaining to a beginner that all these books are different things "function saveBook( book *Book)"
    Very often what people like about object oriented programming are not mainly object themselves, but the syntax. Even some functional languages (.e.g Elixir) have adopted some kind of postfix notation because it represents the flow of data transformation from left to right. e.g. "books.first.title.toUppercase"

  • @yarcat
    @yarcat Před 8 měsíci +1

    Thanks for the video! I'd like to say, that methods aren't exactly a syntactic sugar. They add methods, which modifies the type info, as could be seen from the reflection.
    Regardless of that, adding a save method to a model isn't nice in any language, not just Go - we don't know how this book is gonna be serialized. Serialization should be either a function, or a method of a specific book serializer, but definitely not of the book. Models have to stay models in any language.

    • @anthonygg_
      @anthonygg_  Před 8 měsíci +1

      SaveBook is just a random name I came up with to be honest. You need to understand that explaining things to new people is an art on itself, they need to make connections inside their mind. Using these names and other simple explanations really helps them to get a better grasp of the matter. Once they get better they will do their own due diligence to see that certain terms have a more deeper underlying meaning.

    • @yarcat
      @yarcat Před 8 měsíci +1

      Uh, I understand! I like your vids - I'm amending, not criticizing. I don't feel empowered to criticize creations. But I feel like adding my 5 cents if I have something to add (-;

    • @anthonygg_
      @anthonygg_  Před 8 měsíci

      @@yarcat I agree with you dont get me wrong. There a lot of things wrong with saveBook 😅.

  • @eunesshshahithakuri7047
    @eunesshshahithakuri7047 Před 8 měsíci +3

    I am shifting from typescript to go and this concept really help me thanks brother

  • @taimurqureshi9540
    @taimurqureshi9540 Před 9 dny

    Thanks for the video. Took me a couple mins to realize its "classes", not "clauses" :)

  • @cvairlis
    @cvairlis Před 6 měsíci +2

    Take my subscription mate. I am starting with Go. I hope that this language will help me get out of the box of the OOP models entities etc and see the real code/architecture behind it. I feel in trap with MVC Laravel. I feel that I need to escape from this approach and go to something new. Hope the best.

  • @lnrd3541
    @lnrd3541 Před 6 měsíci +1

    very great explanation! i was a bit confused because i always compared to OOP and never made any sense xd

  • @atifkhanthegreat
    @atifkhanthegreat Před 4 měsíci +1

    How is sending pointer receiver different or worse than sending a pointer function argument?
    Main thing I understand is that to pass the pointer if you want to update original data in the function.

  • @tru2thastyle
    @tru2thastyle Před 2 měsíci +2

    Go is actually more like C than anything else. Except 1000 times better!

  • @jonathanhowells252
    @jonathanhowells252 Před 8 měsíci +1

    Is your accent a mix of Dutch and Scottish? It's excellent 👌v unique

  • @scriptjungle
    @scriptjungle Před 7 měsíci

    While its a good explaination i find it important for go coders to understand when its the right approach (many cases) and when its the better approach or lets say the more fitting with package scoped variables. If your working in a single instance, lets say your core component, you probably dont need a core factory since your application is running with one singular core. therefor using an object oriented approach for this package would be an uneccessary overhead and therefor should not be done.
    I just add this because i see alot of go projects especially new ones which tend to 'over oop' everything just for the sake off. You need to balance it out based on your needs.
    Btw great video .)

  • @sujayxaradhya
    @sujayxaradhya Před 3 měsíci +1

    You really made things so much clearer. Thanks Dude keep up the good work 👍💯✨

  • @anuragkothare6181
    @anuragkothare6181 Před 8 měsíci

    VSCode theme name?

  • @Dedmarkel
    @Dedmarkel Před 18 dny

    The most important thing is missing - the difference between classes and structs is not explained, superficially at least.

  • @MohamedUsman
    @MohamedUsman Před 6 měsíci +1

    What is the VS Code Theme you are using?

  • @ibrahimkoz1983
    @ibrahimkoz1983 Před 8 měsíci

    Objects are objects, they expose behavior. Data is data. It doesn't matter which language you write. I recommend for you to look at domain driven design to distinguish them better.

  • @dkatorzaify
    @dkatorzaify Před 4 měsíci +1

    I fail to understand what are the advantages or disadvantages between the first and second function implementation. They are declared differently but act the same no?

  • @sarangs722
    @sarangs722 Před 2 měsíci

    I kinda feel it was helpful for me to have learned C language very early in my programming journey. I can understand why folks who started with other languages might have difficulty grasping GO language.

  • @zhitoooo
    @zhitoooo Před 6 měsíci

    so tell me why we can't call method like a normal function in golang????

  • @kamalchan9756
    @kamalchan9756 Před 8 měsíci

    golang is very similar to solidity in syntax

  • @user-cn6ql9yz9y
    @user-cn6ql9yz9y Před 3 měsíci

    I am really proud of you, that you understood the concept of stack and that everything is data in your computer, but I do not personally think it is something extraordinary

  • @DevlogBill
    @DevlogBill Před 2 měsíci

    Can it be said a struct is an interface? I don't have much experience but it reminds me of C# but without the boilerplate.

    • @sanjeevdandin9350
      @sanjeevdandin9350 Před 2 měsíci

      A struct is not an interface in golang
      structs are a way to structure your variable with custom data types.
      Golang has its own way of implementing interfaces.

    • @DevlogBill
      @DevlogBill Před 2 měsíci

      @@sanjeevdandin9350 Thanks for the explanation.

  • @cristophermoreno2290
    @cristophermoreno2290 Před 4 měsíci

    THANK YOU, FFFF THANK YOU

  • @karolkotula9279
    @karolkotula9279 Před 8 měsíci

    If somebody is not understanding this simplified example, it doesn't necessarily need to suggest anything about you, GG. It could also say something about somebody :D You are A GREAT teacher. Thanks you !!! :)

  • @thejmaurelli
    @thejmaurelli Před 7 měsíci

    This video was very revealing.

  • @vajravelumani1827
    @vajravelumani1827 Před 6 měsíci +1

    for a moment i thought 'The Rock' was teaching golang, good stuff though !

  • @hl7297
    @hl7297 Před měsícem

    I looked it up and it seems function is the better way because you need to explicitly pass the pointer, isn't explicity better? Plus the syntax is similar to other languages.

  • @TaqiA
    @TaqiA Před 14 dny

    Not just beginners, also senior engineers who never touch Go needs to think differently when writing golang, especially where they coming from OOP lang such as Java/Kotlin, etc

  • @mncimnlox1x9v7i7i
    @mncimnlox1x9v7i7i Před měsícem

    so you use both? the more like function "all tiems", in FRONT, kind of public and the other like a interface ...

  • @weyrdereveryday3478
    @weyrdereveryday3478 Před 3 měsíci

    In the "good old days" the Golang approach would be called OBP ("object based approach/programming"-> encapsulation & abstraction) in contrary to the today's OOP ("object oriented approach/programming "-> encapsulation, abstraction + inheritance+ polymorphism). In OBP the focus is more in the interaction between object's than the taxonomy of objects into classes and class hierarchies. Unfortunately most programmers today a raise into OOP-thinking than understand first the OBP-thinking which is more fundamental and more near to the machine.

  • @leutrimiTBA
    @leutrimiTBA Před 5 měsíci

    so the conclusion is that Book is not a "blueprint" as called in oop languages, structs are just not a primitive data type but just a "advanced" data type that holds one or more primitive data types for easier usage.
    Im new to golang and this is how I understood this, please correct me if im wrong.

  • @claudiogofe
    @claudiogofe Před 6 měsíci +1

    02:25 You meant we should see structs... as a "structure" of data? lol
    Jokes aside, great video Anthony ❤

  • @tranquillityEnthusiast
    @tranquillityEnthusiast Před 6 měsíci

    I got whta your trying to say, thnx brother

  • @adilfarq3784
    @adilfarq3784 Před 8 měsíci +1

    Is u r paid course change to become a good golang dev😊?

  • @0zema
    @0zema Před 8 měsíci +1

    Oh you bet I'm sharing this with my non-Golang friends who come to try out the language and express how weird Golang looks and feels in companrison to Java/C#.

  • @manee427
    @manee427 Před 7 měsíci

    aaamazinggggg video