Shivam Dubeygo-tutorial.hashnode.dev·Nov 24, 2024Mastering Memory: A Beginner's Guide to Comparing Pointers in GoIn Go, pointers are a powerful tool for working with memory. While understanding how to use pointers is essential, knowing how to compare pointers is equally important for managing memory effectively. In this article, we will explain how to compare p...comparing pointers in go
Shivam Dubeygo-tutorial.hashnode.dev·Nov 23, 2024A Beginner's Guide to Pointers in GoWhen working with Go, understanding memory management and pointers can help you write more efficient and optimized code. In this article, we’ll explain pointers, their role in memory management, and how to use them effectively. What Are Pointers? A ...Go Language
Ashwin Gopalsamyashwingopalsamy.hashnode.dev·Nov 7, 2024Understanding Go’s Constants: More Flexible Than They SeemWhen I first got into Go, I thought constants were simple and limited—just fixed values, nothing fancy. But as I delve deeper, I find they're quite versatile. Yes, they're fixed values, but Go handles them in ways that are both flexible and efficient...Go Programming Languagegolang
Srijan Rastogisrijan-27.hashnode.dev·May 28, 2024Go Pointers Made Easy: Understanding Memory in GoGo, a powerful and rapidly growing language, offers a clean and efficient syntax. However, one concept can often trip up newcomers: pointers. Pointers, though seemingly complex, are a fundamental building block for working with memory in Go and unloc...1 like·110 readsGo Language
Diwakardiwakarkashyap.hashnode.dev·Aug 28, 2023Pointers in Golang (go)1. What are Pointers? A pointer is a variable that stores the memory address of another variable. It essentially "points" to the location of another variable. This is useful for several reasons: it can be more memory efficient, it can allow you to mo...32 readsgolang
Salaudeen Sodiqsalsod.hashnode.dev·May 9, 2023GO - PointersWelcome back to my Go series. I hope you are keeping your health 100%. That's nice! The awesome topic we are taking a look at today will be POINTERS. Go pointer is basically the go-to guy when you want to make your program more performance effective,...Golangpointers in Go
Ashwin Gopalsamyashwingopalsamy.hashnode.dev·Jul 22, 2022Understanding Pointers in Go: Beyond the BasicsPointers can be one of the more nuanced features of Go, I would say. While they’re not as complex as some languages memory management tools, Go's simplicity around pointers makes it essential to know when, where and how to use them. In this post, we’...Go Programming Languagegolang