# 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/n73xwma
Go 語言中淺拷貝和深拷貝的區別是什麼?**
要想搞明白深拷貝和淺拷貝的區別,我們需要先弄懂以下幾點: 一、值類型和引用類型----------Go 語言裏面變量有兩類,一類是值類型,一類是引用類型。兩者區別是什麼呢?我們在電腦裏面創建的變量,都是需要內存來存放的。值變量就是直接,一個內存地址對應一個值。而引用變量,則是某個值存放的是另一個值的地址。我畫了一個邏輯圖,幫助我們去理解這個概念。在 Go 語言中:string、int、bool、 ⌘ Read more