不仅是字符串指针,还有bool指针、int指针等。
请参阅: https: //github.com/kubernetes/cli-runtime/blob/5c4694c3aa38d6f710b2e3b18598f9d83f1aae3b/pkg/genericcloptions/config_flags.go#L322-L336
似乎 golang 无法从 Constant Pool 之类的东西中获益。
戈朗
package main
import (
"fmt"
)
func StringPtr(s string) *string {
return &s
}
func main() {
fmt.Println(StringPtr("")) // outputs "0x40e128"
fmt.Println(StringPtr("")) // outputs "0x40e138"
}
Python
id("") // outputs "4459080368"
id("") // outputs "4459080368"
泛舟湖上清波郎朗
慕田峪7331174
心有法竹
慕桂英3389331
相关分类