type MyStruct struct {
IsEnabled *bool
}
如何更改 *IsEnabled = true 的值
这些都不起作用:
*(MyStruct.IsEnabled) = true
*MyStruct.IsEnabled = true
MyStruct.*IsEnabled = true
暮色呼如
相关分类