各种笔记
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3 rivejä
194 B

4 vuotta sitten
  1. # 打印堆栈
  2. fmt.Printf("%s", debug.Stack())
  3. debug.PrintStack()
  4. 可以通过 debug.PrintStack() 直接打印,也可以通过 debug.Stack() 方法获取堆栈然后自己打印。