mirror of
https://gitee.com/johng/gf
synced 2026-07-04 21:03:13 +08:00
15 lines
191 B
Go
15 lines
191 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/g/container/gqueue"
|
|
"github.com/gogf/gf/g/test/gtest"
|
|
)
|
|
|
|
func main() {
|
|
q1 := gqueue.New(2)
|
|
q1.Push(1)
|
|
q1.Push(2)
|
|
gtest.Assert(q1.Size(),2)
|
|
}
|
|
|