golang 空結(jié)構(gòu)體 struct{} 可以用來節(jié)省內(nèi)存
a := struct{}{}
println(unsafe.Sizeof(a))
// Output: 0
理由如下:
- 如果使用的是map,而且map又很長(zhǎng),通常會(huì)節(jié)省不少資源
- 空struct{}也在向別人表明,這里并不需要一個(gè)值
本例說明在map里節(jié)省資源的用途:
set := make(map[string]struct{})
for _, value := range []string{"apple", "orange", "apple"} {
set[value] = struct{}{}
}
fmt.Println(set)
// Output: map[orange:{} apple:{}]
下例,演示了struct{}可以向人展示對(duì)象中不需要任何數(shù)據(jù),僅包含需要方法。在調(diào)用也并無任何區(qū)別
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
}
還有其他情況,比如有時(shí)候使用channel,但并不需要附帶任何數(shù)據(jù)。
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
}
到此這篇關(guān)于Golang空結(jié)構(gòu)體struct{}用途,你知道嗎的文章就介紹到這了,更多相關(guān)Golang空結(jié)構(gòu)體struct{}內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- golang 如何用反射reflect操作結(jié)構(gòu)體
- golang 實(shí)現(xiàn)兩個(gè)結(jié)構(gòu)體復(fù)制字段
- golang通過反射設(shè)置結(jié)構(gòu)體變量的值
- golang修改結(jié)構(gòu)體中的切片值方法
- Golang自定義結(jié)構(gòu)體轉(zhuǎn)map的操作
- golang 結(jié)構(gòu)體初始化時(shí)賦值格式介紹
- 解決golang結(jié)構(gòu)體tag編譯錯(cuò)誤的問題