Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これら 2 つのコード スニペットの違いがわかりません。
T extends List最初の例での役割は何ですか? 「タイプまたはサブタイプをsee渡すことができる名前のメソッド」と解釈できますか? はいの場合、方法 2 を使用しないのはなぜですか?ListList
T extends List
see
List
1.
public <T extends List> void see(T n) {}
2.
public void see(List n) {}