初级会员
  • 第 10520 位会员
  • WangWangZhou
  • 2017-07-31 03:40:39
  • Offline
  • 19 30

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 评论了面试题 Go每日一题(66)
    mark
  • 评论了面试题 Go每日一题(65)
    mark ```go package main import "fmt" func main() { s := [3]int{1, 2, 3} a := s[:0] b := s[:2] c := s[1:2:cap(s)] fmt.Println("---a---") fmt.Println(a) fmt.Println("len:",len(a)) fmt.Println("cap:",cap(a)) fmt.Println("---b---") fmt.Println(b) fmt.Println("len:",len(b)) fmt.Println("cap:",cap(b)) fmt.Println("---c---") fmt.Println(c) fmt.Println("len:",len(c)) fmt.Println("cap:",cap(c)) } //output //---a--- //[] //len: 0 //cap: 3 //---b--- //[1 2] //len: 2 //cap: 3 //---c--- //[2] //len: 1 //cap: 2 ```
  • 评论了面试题 Go每日一题(61)
    mark
  • 评论了面试题 Go每日一题(56)
    mark ```go package main import "fmt" type People struct{} func (p *People) ShowA() { fmt.Println("People showA") p.ShowB() } func (p *People) ShowB() { fmt.Println("People showB") } type Teacher struct { People } func (t *Teacher) ShowB() { fmt.Println("teacher showB") } func main() { t := Teacher{} t.ShowA() fmt.Println("---") t.ShowB() } //输出 // People showA // People showB // --- // teacher showB ```
  • 评论了面试题 Go每日一题(55)
    mark