# 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/fvk437a
一文詳解 Java 泛型設計**
本文主要介紹泛型誕生的前世今生,特性,以及著名 PECS 原則的由來。在日常開發中,必不可少的會使用到泛型,這個過程中經常會出現類似 “爲什麼這樣會編譯報錯?”,“爲什麼這個列表無法添加元素?” 的問題,也會出現感嘆 Java 的泛型限制太多了很難用的情況。爲了更好的使用泛型,就需要更深的瞭解它,因此本文主要介紹泛型誕生的前世今生,特性,以及著名 PECS 原則的由來。泛型的誕生背景在沒有泛型之前 ⌘ Read more