Тёмный

Beginners Should Think Differently When Writing Golang 

Anthony GG
Подписаться 54 тыс.
Просмотров 88 тыс.
50% 1

► 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
╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
╠╗║╚╝║║╠╗║╚╣║║║║║═╣
╚═╩══╩═╩═╩═╩╝╚╩═╩═╝

Опубликовано:

 

3 сен 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 217   
@anthonygg_
@anthonygg_ 8 месяцев назад
► 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 8 месяцев назад
Thanks for content! Anthony, which color scheme you use for code?
@RubinGhimire
@RubinGhimire 7 месяцев назад
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_ 7 месяцев назад
Thanks. 100% correct
@seymour_videos
@seymour_videos 7 месяцев назад
When he said that I immediately thought if Go does that by default. Thanks for clearing that up.
@yegorzakharov8514
@yegorzakharov8514 4 месяца назад
Go passes everything by value, not just structs
@TehKarmalizer
@TehKarmalizer 3 месяца назад
@@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-.- 2 месяца назад
@@yegorzakharov8514yeah but sometimes the “data” being passed contains a pointer
@joshi1q2w3e
@joshi1q2w3e 8 месяцев назад
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!
@anthonygg_
@anthonygg_ 8 месяцев назад
Thank you!
@wadecodez
@wadecodez 6 месяцев назад
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 3 месяца назад
Where 'this' is the default argument.
@Allr3dc
@Allr3dc 8 месяцев назад
Wish this video existed when I first started writing Go. Really well done and easy to understand for OOP programmers starting Go!
@DaniilHarik
@DaniilHarik 8 месяцев назад
same words, accepted the Go way long ago, but the "syntax sugar" example made things connect in my head better
@avonflex5031
@avonflex5031 7 месяцев назад
How does he move the cursor quickly up and down while typing ?
@romanferguson4032
@romanferguson4032 5 месяцев назад
it looks like he is using vim movement.@@avonflex5031
@anton9410
@anton9410 3 месяца назад
@@avonflex5031 vim
@kurshadqaya1684
@kurshadqaya1684 2 месяца назад
@@avonflex5031, it is called VIM motions.
@axisaligned9799
@axisaligned9799 8 месяцев назад
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_ 8 месяцев назад
Thanks for the detailed amend
@manuelquiroga8022
@manuelquiroga8022 8 месяцев назад
Cool explanation. Coming (and still mostly coding in) JS and Python, I'm loving Go's approach
@tomasslavik1119
@tomasslavik1119 6 месяцев назад
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 6 месяцев назад
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 6 месяцев назад
@@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 8 месяцев назад
Your examples made my confusions alot clear, ty alot
@vijayb3133
@vijayb3133 8 месяцев назад
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 8 месяцев назад
I don't have a py background, but also compared it to py :D
@aleclowry7654
@aleclowry7654 8 месяцев назад
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 6 месяцев назад
yeah dont take the advise of this youtuber, seems dumb advice tbh
@joshkny
@joshkny 2 месяца назад
This was the first in a series of big breakthroughs for me using GO. Thank you, Anthony!
@tornikegogberashvili3131
@tornikegogberashvili3131 5 месяцев назад
Thnak you for your content! Always useful videos. Keep up the good work! 🚀
@kumekster
@kumekster 2 месяца назад
I struggled to understand pointers and your explanation was mind opening. Kudos.
@BanAaron
@BanAaron 7 месяцев назад
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
@christiang.8880
@christiang.8880 6 месяцев назад
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 }
@XternalArchives
@XternalArchives 8 месяцев назад
I saw a comment saying interfaces, i think you should show when to use interfaces and methods. Good video.
@GoodOpsec
@GoodOpsec 4 месяца назад
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.
@user-pm4so7qg2o
@user-pm4so7qg2o 8 месяцев назад
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
@FernandoDanko
@FernandoDanko Месяц назад
Short explanation: It's like C
@gmdias0_
@gmdias0_ 8 месяцев назад
Anthony, what;s your vscode theme?
@lokthar6314
@lokthar6314 8 месяцев назад
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, &params) instead of dbpackage.PutItem(myDbConnection, context, &params). Do you consider this bad, as it follows the "bad practice" pattern you showed with the book example in the video?
@rodrick2312
@rodrick2312 8 месяцев назад
Thanks a lot for the video!!!!
@XxMissingDataxX
@XxMissingDataxX 8 месяцев назад
Good video. Can you do interfaces?
@khaledmohammad8671
@khaledmohammad8671 3 месяца назад
Loved it, you cleared it up pretty well! Kudos to you!
@computersindia
@computersindia 3 месяца назад
I enjoyed the way you explained for better understanding. Thanks!!
@foreveryoung6108
@foreveryoung6108 8 месяцев назад
This is very importand fundamental concept that we should to know and not break using approaches from other languages. Keep it simple!
@abohm25
@abohm25 8 месяцев назад
I thought you switched to neovim? What made you go back to vscode?
@buddy.abc123
@buddy.abc123 8 месяцев назад
Thanks man, I've started learning Go (coming from C#, C and Python) and this video just unlocked my light bulb moment
@anthonygg_
@anthonygg_ 8 месяцев назад
Happy I could help out. You will do great coming from those languages.
@KhaPiano
@KhaPiano 7 месяцев назад
This channel is a gem - binging all your videos as a Go learner
@anthonygg_
@anthonygg_ 7 месяцев назад
Good luck my man
@1110Spirit
@1110Spirit Месяц назад
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 ?
@luciusstark
@luciusstark 6 месяцев назад
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).
@Origin211
@Origin211 8 месяцев назад
What extension/config are you using to emulate Vim modal editing within VSCode?
@anthonygg_
@anthonygg_ 8 месяцев назад
Default VIM plugin that comes with VSCODE
@Origin211
@Origin211 8 месяцев назад
@@anthonygg_thx a lot! Very useful content❤
@dinhmai1268
@dinhmai1268 8 месяцев назад
hi Anthony, what is the colorscheme u are using in the video?
@anthonygg_
@anthonygg_ 8 месяцев назад
Gruvbox the hard contrast one
@pserra94
@pserra94 8 месяцев назад
amazing video, thanks! Anthony i was trying to buy your course but 50% discount wasnt working anymore
@taimurqureshi9540
@taimurqureshi9540 9 дней назад
Thanks for the video. Took me a couple mins to realize its "classes", not "clauses" :)
@adexitum
@adexitum 6 месяцев назад
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 6 месяцев назад
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.
@eunesshshahithakuri7047
@eunesshshahithakuri7047 8 месяцев назад
I am shifting from typescript to go and this concept really help me thanks brother
@amirranjbar-vj4su
@amirranjbar-vj4su Месяц назад
I realy learned alot from you thank you so much! keep up the good work!
@sameerjoshi1972
@sameerjoshi1972 6 месяцев назад
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
@and1595
@and1595 8 месяцев назад
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_ 8 месяцев назад
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 8 месяцев назад
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 8 месяцев назад
gotcha, thank you
@valentinzambelli9930
@valentinzambelli9930 8 месяцев назад
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 6 месяцев назад
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. )
@farrela.846
@farrela.846 Месяц назад
Just fumbled around about this topic and the algorithm bless me with this vid. Thanks!
@anthonygg_
@anthonygg_ Месяц назад
🤩
@etfstrategy-vb2eo
@etfstrategy-vb2eo 8 месяцев назад
Good explanation. Method definitions perhaps are a bit more than syntactic sugar e.g. code organization for composition (interfaces).
@mareczekdynamit9497
@mareczekdynamit9497 7 месяцев назад
Hi, what's this theme's name? Can someone provide info about VSC plugin name/url? Thx in advance
@anthonygg_
@anthonygg_ 7 месяцев назад
Gruvbox
@matthewcollett2281
@matthewcollett2281 5 дней назад
So then which way do I make the function? Is it like a best practice thing or what
@sayassassin5781
@sayassassin5781 8 месяцев назад
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 7 месяцев назад
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 7 месяцев назад
@@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.
@roshawnbrooks4091
@roshawnbrooks4091 5 месяцев назад
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_ 5 месяцев назад
Why would I be mad? 😊. No pointers do not replace classes. Pointers allow you to update memory directly.
@tru2thastyle
@tru2thastyle 2 месяца назад
Go is actually more like C than anything else. Except 1000 times better!
@r0075h3ll
@r0075h3ll 6 месяцев назад
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 6 месяцев назад
> 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: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-sTFJtxJXkaY.html
@tnypxl
@tnypxl 8 месяцев назад
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.
@hawk1278
@hawk1278 5 месяцев назад
This was a great explanation for me to understand things better.
@forscale_banana
@forscale_banana Месяц назад
Great explainer video!! Keep up the good work!!
@Dedmarkel
@Dedmarkel 18 дней назад
The most important thing is missing - the difference between classes and structs is not explained, superficially at least.
@mohamadbt4055
@mohamadbt4055 8 месяцев назад
thanks a log it was really good
@majixx
@majixx 8 месяцев назад
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_ 8 месяцев назад
Pointers are always NOT safe for concurrent usage. Thats where channels come into play.
@majixx
@majixx 8 месяцев назад
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!
@JacquesvanWyk
@JacquesvanWyk 4 месяца назад
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
@geekstakulus
@geekstakulus 8 месяцев назад
If you want to master Go, learn from its direct ascendent: Oberon. But, great points you brought.
@atomiorootshell2
@atomiorootshell2 Месяц назад
Thank you for sharing!
@oscartorres1669
@oscartorres1669 8 месяцев назад
Really good information
@SeshachalamMalisetti
@SeshachalamMalisetti 8 месяцев назад
By adding methods to the structure, it can satisfy some interface else it is just plain data.
@rban123
@rban123 8 месяцев назад
even if it doesnt have methods it can still satisfy an interface, if said interface doesnt have methods
@daz1uk
@daz1uk 3 месяца назад
Brilliant explainer! Thanks.
@FareAlert
@FareAlert 7 месяцев назад
Awesome thank you :)
@abdulkhaliq-lo8gu
@abdulkhaliq-lo8gu 3 месяца назад
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 .
@vajravelumani1827
@vajravelumani1827 6 месяцев назад
for a moment i thought 'The Rock' was teaching golang, good stuff though !
@MuhammadFahreza
@MuhammadFahreza 7 месяцев назад
What is the theme of your vscode?
@anthonygg_
@anthonygg_ 7 месяцев назад
Gruvbox
@moarte6
@moarte6 6 месяцев назад
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?
@human-011
@human-011 8 месяцев назад
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 7 месяцев назад
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 2 месяца назад
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.
@sarangs722
@sarangs722 2 месяца назад
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.
@TehGettinq
@TehGettinq 8 месяцев назад
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 8 месяцев назад
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 6 месяцев назад
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.
@hpygocrazy
@hpygocrazy 8 месяцев назад
Good explanation, however, you missed showing how the two variations of the func are called.
@anthonygg_
@anthonygg_ 8 месяцев назад
True. But I have several videos covering this aswel. This video was a specific exercise taking a step back
@MohamedUsman
@MohamedUsman 6 месяцев назад
What is the VS Code Theme you are using?
@anthonygg_
@anthonygg_ 6 месяцев назад
Gruvbox
@MohamedUsman
@MohamedUsman 6 месяцев назад
@@anthonygg_ thank you
@atifkhanthegreat
@atifkhanthegreat 4 месяца назад
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.
@anthonygg_
@anthonygg_ 4 месяца назад
No difference.
@ralphwealth163
@ralphwealth163 8 месяцев назад
amazing explanation
@DevlogBill
@DevlogBill 2 месяца назад
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 2 месяца назад
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 2 месяца назад
@@sanjeevdandin9350 Thanks for the explanation.
@dkatorzaify
@dkatorzaify 4 месяца назад
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?
@anthonygg_
@anthonygg_ 4 месяца назад
Yes. They behave the same.
@cvairlis
@cvairlis 6 месяцев назад
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 6 месяцев назад
very great explanation! i was a bit confused because i always compared to OOP and never made any sense xd
@anthonygg_
@anthonygg_ 6 месяцев назад
Thank you
@TaqiA
@TaqiA 14 дней назад
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
@hl7297
@hl7297 Месяц назад
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.
@user-pg2or3lx6r
@user-pg2or3lx6r 7 месяцев назад
Brother .....❤ more videos this simple and bird eye view teaching ...
@zhitoooo
@zhitoooo 6 месяцев назад
so tell me why we can't call method like a normal function in golang????
@weyrdereveryday3478
@weyrdereveryday3478 3 месяца назад
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.
@mickaelriga8169
@mickaelriga8169 7 месяцев назад
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 8 месяцев назад
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_ 8 месяцев назад
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 8 месяцев назад
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_ 8 месяцев назад
@@yarcat I agree with you dont get me wrong. There a lot of things wrong with saveBook 😅.
@mncimnlox1x9v7i7i
@mncimnlox1x9v7i7i Месяц назад
so you use both? the more like function "all tiems", in FRONT, kind of public and the other like a interface ...
@ninthsun
@ninthsun Месяц назад
This not only applies to Go. When you learn a new programming language, you'll have to think in a new way. Sticking to traditional OOP or FP is fine, but then you'll gonna miss the real benefits of that language. Programming paradigm and patterns are just concept. They are not a master key.
@ibrahimkoz1983
@ibrahimkoz1983 8 месяцев назад
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.
@jonathanhowells252
@jonathanhowells252 8 месяцев назад
Is your accent a mix of Dutch and Scottish? It's excellent 👌v unique
@anthonygg_
@anthonygg_ 8 месяцев назад
😇
@manfrombritain6816
@manfrombritain6816 6 месяцев назад
I was trying to figure this out as well 😂
@user-cn6ql9yz9y
@user-cn6ql9yz9y 3 месяца назад
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
@anuragkothare6181
@anuragkothare6181 8 месяцев назад
VSCode theme name?
@sujayxaradhya
@sujayxaradhya 3 месяца назад
You really made things so much clearer. Thanks Dude keep up the good work 👍💯✨
@scriptjungle
@scriptjungle 7 месяцев назад
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 .)
@0zema
@0zema 8 месяцев назад
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#.
@tokisuno
@tokisuno 9 дней назад
4/10 didn't roll is Rs every single opportunity he had. (great vid btw)
@leutrimiTBA
@leutrimiTBA 5 месяцев назад
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.
@TheMattSturgeon
@TheMattSturgeon Месяц назад
Well, the same applies to other languages really. Receiver functions and class methods in any language are _also_ just syntactic sugar, with varying degrees of abstraction and complexity...
@kamalchan9756
@kamalchan9756 8 месяцев назад
golang is very similar to solidity in syntax
@thejmaurelli
@thejmaurelli 7 месяцев назад
This video was very revealing.
@sharp764
@sharp764 Месяц назад
Go seems to take the same approach as C you have structs and functions and that’s it
@SR-ti6jj
@SR-ti6jj 5 месяцев назад
YavaScript!
@cristophermoreno2290
@cristophermoreno2290 4 месяца назад
THANK YOU, FFFF THANK YOU
Далее
Adding Cluster Support To Hollywood Actor Framework
1:50:28
This Will Make Everyone Understand Golang Interfaces
21:03
Deleted skins in Standoff 2! #standoff #skins #nameless
01:00
The Bad Boys doing too much 🔨🥒 #learnfromkhaby
00:46
3 Golang Tips For Beginners I Wish I Knew Sooner
13:18
Why I Use Golang In 2024
9:21
Просмотров 224 тыс.
How To Use Goroutines For Aggregating Data In Golang?!
17:15
Go vs Rust: Which To Learn In 2024?
6:27
Просмотров 127 тыс.
Deleted skins in Standoff 2! #standoff #skins #nameless
01:00