选自: gcc-arm-none-eabi/info/gcc.info点击(此处)折叠或打开* gcc: (gcc). The GNU Compiler Collection. ---"(GNU Tools for ARM Embedded Processors)"2.1 C language============== GCC supports three versions of the C standard, althou...【阅读全文】
封装继承接口 //Learn_Go/main.go package main import "fmt" type Live interface { run(i int) eat(thing string) } type People struct { name string } func (p *People) run(i int) { fmt.Println(p.name,"跑了",i,"米") ...【阅读全文】