# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/f2h76hq
【譯】Go 語言:深入探究 array 與 slice
你好,我是小四,你情商高,也可以叫我四哥~這篇文章我們將討論 Go 語言中數組與切片 (slice),深入探究它們的內部結構以及爲什麼它們表現不一樣,即使它們能做類似的事情。我們將從以下幾個方面討論數組和切片的表現差異:默認值和零值 聲明和初始化數組和切片 數組和切片的值部分 操作數組和切片 關於切片的潛在陷阱 代碼優化的小技巧 默認值和零值Go 語言中,聲明變 ⌘ Read more