摘要: package mainimport ( "fmt" "runtime")type A struct { a int}func main() { self := new(A) self.a = 99 runtime.SetFinalizer(self, func(self *A) { self.a 阅读全文
posted @ 2021-11-04 17:29 zJanly 阅读(105) 评论(0) 推荐(0) 编辑