各种笔记
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

20 líneas
567 B

  1. # go语言特性
  2. 内置并发编程支持
  3. 使用携程 goroutine 作为基本计算单元
  4. 使用通道 channel 作为通信和同步
  5. 内置了map slice 类型
  6. 支持多态
  7. 使用接口 interface 来实现value boxing 和 反射 reflection
  8. 支持指针
  9. 支持函数闭包 closure
  10. 支持方法
  11. 支持延迟函数调用 defer
  12. 支持类型内嵌 type embedding
  13. 支持类型推断 type deduction or type inference
  14. 内存安全
  15. 自动垃圾回收
  16. 良好的代码跨平台性