Golang 之 面向对象type ,扩张系统已有类型

  • 目录
    这里写图片描述

  • main包

package main

import (
    . "../../queue"
    . "fmt"
    )

func main()  {
    q := Queue{1,2,3,4}
    q.Push(5)
    q.Pop()
    q.Pop()
    q.Pop()
    Println(q.IsEmpty())
}


  • queue包

Go语言中可以通过type关键字声明类型,如type StrSlice []string 将[]string(string类型的切片)声明为StrSlice 类型
package queue

type Queue []int

func (q *Queue)  Push(v int) {
    *q = append(*q, v)
}

func (q *Queue)  Pop() int {
    head := (*q)[0]
    *q = (*q)[1:]
    return head
}

func (q *Queue) IsEmpty() bool {
    return len(*q) == 0

}

你可能感兴趣的:(golang,Golang王者之路)