GO語言"container/ring"包中"Ring.Len"類型的用法及代碼示例。
用法:
func(r *Ring) Len() int
Len 計算環 r 中的元素數。它的執行時間與元素數量成正比。
例子:
package main
import (
"container/ring"
"fmt"
)
func main() {
// Create a new ring of size 4
r := ring.New(4)
// Print out its length
fmt.Println(r.Len())
}
輸出:
4
相關用法
- GO Ring.Link用法及代碼示例
- GO Ring.Unlink用法及代碼示例
- GO Ring.Move用法及代碼示例
- GO Ring.Prev用法及代碼示例
- GO Ring.Next用法及代碼示例
- GO Ring.Do用法及代碼示例
- GO Regexp.FindString用法及代碼示例
- GO Regexp.FindAllIndex用法及代碼示例
- GO ResponseRecorder用法及代碼示例
- GO ReverseBytes64用法及代碼示例
- GO ReverseBytes16用法及代碼示例
- GO Regexp.ReplaceAllLiteralString用法及代碼示例
- GO Regexp.FindStringSubmatch用法及代碼示例
- GO Rows用法及代碼示例
- GO Regexp.FindAllString用法及代碼示例
- GO ReadMessage用法及代碼示例
- GO Regexp.ExpandString用法及代碼示例
- GO ResponseWriter用法及代碼示例
- GO Regexp.FindAllStringSubmatch用法及代碼示例
- GO Reverse用法及代碼示例
注:本文由純淨天空篩選整理自golang.google.cn大神的英文原創作品 Ring.Len。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。