时间:2021-05-22
golang 空结构体 struct{} 可以用来节省内存
a := struct{}{}println(unsafe.Sizeof(a))// Output: 0理由如下:
本例说明在map里节省资源的用途:
set := make(map[string]struct{})for _, value := range []string{"apple", "orange", "apple"} { set[value] = struct{}{}}fmt.Println(set)// Output: map[orange:{} apple:{}]下例,演示了struct{}可以向人展示对象中不需要任何数据,仅包含需要方法。在调用也并无任何区别
type Lamp struct{}func (l Lamp) On() { println("On")}func (l Lamp) Off() { println("Off")}func main() { // Case #1. var lamp Lamp lamp.On() lamp.Off() // Output: // on // off // Case #2. Lamp{}.On() Lamp{}.Off() // Output: // on // off}还有其他情况,比如有时候使用channel,但并不需要附带任何数据。
func worker(ch chan struct{}) { // Receive a message from the main program. <-ch println("roger") // Send a message to the main program. close(ch)}func main() { ch := make(chan struct{}) go worker(ch) // Send a message to a worker. ch <- struct{}{} // Receive a message from the worker. <-ch println(“roger") // Output: // roger // roger}到此这篇关于Golang空结构体struct{}用途,你知道吗的文章就介绍到这了,更多相关Golang空结构体struct{}内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Excel中有个非常独特的小技巧—双击鼠标功能,你知道吗?Excel中双击鼠标有几个用途想知道吗?那就仔细来看看这篇文章吧。Excel技巧excel
C#结构体在C#中,结构体是值类型数据结构。它使得一个单一变量可以存储各种数据类型的相关数据。struct关键字用于创建结构体。定义结构体structBooks
golang修改结构体中的切片值,直接传结构体地址就可以packagemainimport"fmt"typerspInfostruct{KeyWordsstri
指针也可以指向一个结构体,定义的形式一般为:struct结构体名*变量名;下面是一个定义结构体指针的实例:?12345678structstu{char*nam
概述相对Objective-C,Swift使用结构体Struct的比例大大增加了,其中Int,Bool,以及String,Array等底层全部使用Struct来