튜토리얼 칼럼에서 Go의 &와 *의 차이점과 응용 시나리오를 소개한 내용인데, 필요한 친구들에게 도움이 되었으면 좋겠습니다! & go에서는 주소 기호를 직접 가져옵니다하지만 두 번째 항목에서는 &{}가 0x...address
이해가 잘 안 돼요
package mainimport "fmt"type Test struct { name string}func main() { test := Test{"test"} fmt.Println(test) //结果{test} testa := &Test{"test"} fmt.Println(testa) //结果 &{test} testc := &Test{"test"} fmt.Println(*testc) //结果 {test} testd := &Test{"test"} fmt.Println(&testd) //结果 0xc000006030}
위 내용은 go에서 &와 *의 차이점과 적용 시나리오에 대해의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!