For further actions, you may consider blocking this person and/or reporting abuse
Read next
How to undo the most recent local commits in Git?
Ankur Singh -
Why I Can't Stop Talking About Arc Browser: A Developer's Story
Muzaffar Hossain -
🚀 🌟 Why Rust is the Next Big Thing in Programming 🔥
Hanzla Baig -
Pathfinding: Solving the N-Queens Problem Using Backtracking Introduction:
TAMIL SELVAN M IT -
Top comments (7)
The true power of interfaces
That's my case! I (probably) know how to write and to use, but now sure how to maximize the benefits of it. =/
The basic concept of interfaces. I don't see a reason I would ever use them, yet I'm sure I should be using them. I've read multiple articles (dozens) and still don't understand how/when I should implement them.
Pointers took me some time to wrap my head around.
Also, coming from Ruby where interfaces are more of an implicit concept, having to define them explicitly in Go was frustrating at first.
Interesting, implicit concept like how you pass in a Ruby value and it runs methods that are expected to be there?
Yeah, the idea of duck typing, where as long as an object responds to certain methods and had certain values it can be replaced with any other object, no matter the type, that implements the same methods and properties, without that interface having to be explicitly defined anywhere.
When I was doing Ruby I used to love the flexibility that me, now I can't imagine how anyone can maintain that lol.
Interfaces and channels. I still have to stop and think every time I go to use them.