LoginSignup
2
0

More than 3 years have passed since last update.

Go makeとnewの違い

Posted at

makeとnewの違い

違いはポインタを返すかどうか

make → ポインタを返さない

new → ポインタを返す

main.go
package main 

import(
    "fmt"
)

func main(){
    var p *int = new(int)
    fmt.Printf("%T\n", p) => *int

    s := make([]int, 0)
    fmt.Printf("%T\n", s) => []int

}
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0