Pros vs Cons of When to USE Pointers in Golang

Поділитися
Вставка
  • Опубліковано 6 лют 2025

КОМЕНТАРІ • 47

  • @MelkeyDev
    @MelkeyDev  9 місяців тому +11

    I hope you all enjoy this video! Let me know what you think in the comments

  • @themichaelw
    @themichaelw 9 місяців тому +26

    *context* I've been working full time in Go at an org with > 1000 engineers for the past 2 years, and I've read The Go Programming Language cover to cover. So I'm a decent gopher by most standards.
    I pretty much only _pass_ pointers when mutability of the original object is desirable. I _use_ pointers in structs when a value is optional, eg. when parsing from json. Objects like slices and maps are *no more efficient to pass to as a pointer than by value*, since the "value" of a slice/map is a "header" struct with a 3 fields denoting length, capacity, and a pointer to the first address of the slice. So there's already a pointer under the hood, no need to create another. Also, pass-by-value is typically faster for small things. And if you're running on 64 bit hardware and you're passing pointers to < 64 bit variables like int32, you're literally using twice as much space to pass that as a pointer than you would to just copy the 32 bit value, since a pointer will be full word, or 64 bits on that architecture.

  • @this_username_speaks
    @this_username_speaks 9 місяців тому +9

    🔥I use pointers to:
    👉 `mutate` data between 2 isolated `code blocks (functions)`
    👉 Avoid new memory allocations
    👉 make the Garbage Collector happy ...
    Thank you for the great video !

  • @fersalamanca2606
    @fersalamanca2606 9 місяців тому +13

    I think that for us Go noobs some code examples illustrating these points would be hugely benefitial

  • @rosehogenson1398
    @rosehogenson1398 9 місяців тому +13

    Whenever you return an invalid value from a function, either nil or an uninitialized struct, it's good to include an extra bool (or error) return as well. For example:
    func f() (*MyStruct, bool) {
    if !somePrecondition() {
    return nil, false
    }
    return &MyStruct{}, true
    }
    This greatly reduces the chance that the caller will forget to check for nil, and get a nil pointer dereference. This comes from the builtin map type, and the _, ok := pattern.

    • @MelkeyDev
      @MelkeyDev  9 місяців тому +2

      OOOO
      This is awesome.
      And if you want to return an error, would you just append it?

    • @johanneswelsch
      @johanneswelsch 9 місяців тому

      thanks, makes sense

  • @afsdab
    @afsdab 9 місяців тому +5

    I'm learning Go and for now I'm returning in every function I have, but I watched a bunch of videos that recommend if I'm getting info and I won't do any change in the state the function should not return a pointer.
    I'll give a try for this approach and see what happens

    • @MelkeyDev
      @MelkeyDev  9 місяців тому +3

      I think thats a good rule of thumb.
      In all honestly, on smaller scale apps, either approach will be good

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

    Great vide Melkey, I understand more about pointers in Go awesome language!!

  • @justintie
    @justintie 9 місяців тому +13

    Copying a struct is much faster than messing with pointers, unless it is a huge struct

    • @MelkeyDev
      @MelkeyDev  9 місяців тому

      Yep. If its a huge struct then copying becomes inefficient

    • @TehKarmalizer
      @TehKarmalizer 9 місяців тому

      This is why I think mixed API isn’t a strong con. It may be warranted for performance, and doesn’t strike me as very different from simply returning different types.

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

      Yeah, gotta consider the overhead of the GC having to perform escape analysis on pointers. Most cases copying is faster simply because the value is just on the stack and is easily cleaned up when the function returns.

  • @tamdomus
    @tamdomus 9 місяців тому +7

    2 More pros:
    - Can use methods with both pointer and value receivers.
    - Does not copy the sync.Mutex

    • @MelkeyDev
      @MelkeyDev  9 місяців тому +1

      Aye awesome thank you

  • @jordangregory9852
    @jordangregory9852 9 місяців тому +2

    Great video! Personally I’m purely in the “pointer for mutability only” camp. I default to copies so I can’t mutate things on accident.

    • @MelkeyDev
      @MelkeyDev  9 місяців тому +1

      Hell yeah. Love it

  • @amadijerry7607
    @amadijerry7607 9 місяців тому

    I started learning GO, a few months ago. How we can structure our codes to prevent import cycle errors

  • @Zmey5656
    @Zmey5656 8 місяців тому +1

    I used to think that the pointer in GoLang was an advantage over other languages, but now, after your video, I understand that we have different opinions about the pointer.

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

      thats good yeah??

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

      @@MelkeyDev Yep))))

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

    I think you are forced to use pointers when variables from a struct are optional, ex: an optional number field in a document of mongodb, if the number is zero you can't tell the difference if it's in the DB or if it was zero'd by the struct. But if you use a pointer you'll have nil if it's not in the db.

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

    How are mutability and nil as value good things?

  • @erikslorenz
    @erikslorenz 9 місяців тому +1

    I tend not to use pointers when it’s record type values. For example user. A lot of the times it’s coming out of a context and I need that to be a real val

  • @johanneswelsch
    @johanneswelsch 9 місяців тому

    What do you think about filling up DB with values instead of nil? I've been bitten by this before where a nil db field could not be scanned into a struct field. It was a runtime error.

  • @emil_l889
    @emil_l889 9 місяців тому +1

    Once spent like an hour getting nil pointer deference when working w redis only to realize that I forgot to initialize the struct😭😔

  • @AntonLukas
    @AntonLukas 9 місяців тому +9

    Most of the downsides appear to just be skill issues

    • @MelkeyDev
      @MelkeyDev  9 місяців тому +6

      Everything is a skill issue if you break it down

    • @AntonLukas
      @AntonLukas 9 місяців тому +1

      @@MelkeyDev Fair enough, great video by the way.

  • @paca3107
    @paca3107 9 місяців тому +1

    Please make a video how to avoid memory leaks!

  •  9 місяців тому

    Hey @MelkeyDev do you have any suggestion for a book/course/any other resource to learn computer science concepts in Go?

    • @MelkeyDev
      @MelkeyDev  9 місяців тому +1

      ua-cam.com/video/qT14b1pxtiI/v-deo.html&t I made this video - let me know if its helpfu

  • @ofadiman
    @ofadiman 9 місяців тому +2

    Could you point me to the nearest grocery store using golang?

  • @MattRobinsonDev
    @MattRobinsonDev 9 місяців тому

    Great video

  • @viniciusmachadorodrigues1724
    @viniciusmachadorodrigues1724 9 місяців тому

    I only use pointers when i purposelly want to modify the struct somewhere.

  • @kenzo3477
    @kenzo3477 9 місяців тому +3

    use pointers in C 🚫
    use pointers in go ✅

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

    Using pointers should be an intentional and deliberate action. If you are not sure, don’t use it until you are.
    I’ve seen plenty projects where EVERY struct is a pointer and it sucks big time.

  • @luizpbraga
    @luizpbraga 9 місяців тому +1

    return a stack pointer is just weird

  • @erikslorenz
    @erikslorenz 9 місяців тому

    Nah always give the shit struct back and an error