摘要: 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 阅读(110) 评论(0) 推荐(0)