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.
ジェネリック型の比較に問題があります。C# では、私はいつも次のようなことをしてきました: class Element<T, V> where T : IComparable<T>.
class Element<T, V> where T : IComparable<T>
私の質問は、どのようにJavaで書くことができますか?
次のようなものが必要だと思います:
class Element<T extends Comparable<T>>
...Comparableインターフェイスと制限付きの型パラメーターを使用します。
Comparable