摘要: https://www.w3school.com.cn/js/js_object_constructors.asp 实例 function Person(first, last, age, eye) { this.firstName = first; this.lastName = last; th 阅读全文
posted @ 2022-02-24 14:36 技术颜良 阅读(82) 评论(0) 推荐(0) 编辑
摘要: import ( "fmt" "sync" "time")var a int64 = 0var b int64 = 0func main() { wg:=sync.WaitGroup{} wg.Add(1) go func() { defer wg.Done() a=1 b=2 }() wg.Wai 阅读全文
posted @ 2022-02-24 12:04 技术颜良 阅读(20) 评论(0) 推荐(0) 编辑