🔒 Closed [go] pointer and dereference

Status
Not open for further replies.

Katipunero-

Honorary Poster
Para din sa mga nalilito, share ko tong ginawa kong simple explanation para magets yung logic and usage nila.

Code:
package main

import "fmt"

func main() {
    name := "PHCorner" // Simpleng string variable.
    fmt.Println("string variable name:", name)
    p := &name // Nasa akin ang RAM address ni variable name.
    fmt.Println("RAM Address:", p)
    dp := *p // Hawak ko ang value ng owner ni Ram Address na hawak ni p.
    fmt.Println("Dereference Pointer:", dp)
}

Go playground: You do not have permission to view the full content of this post. Log in or register now.
 
Status
Not open for further replies.

About this Thread

  • 0
    Replies
  • 268
    Views
  • 1
    Participants
Last reply from:
Katipunero-

Trending Topics

Online now

Members online
1,302
Guests online
3,508
Total visitors
4,810

Forum statistics

Threads
2,305,834
Posts
29,168,100
Members
1,195,465
Latest member
lanxkie
Back
Top