Java でいくつかの基本的な数学的概念を定義しようとしていますが、ジェネリック エラーが発生し続けています。以下の例を考えてみましょう。この例では、ゼロ マッピング(すべての x に対して f(x) = 0) を定数マッピング(すべての x に対して f(x) = c) と線形マッピング(f(a*x + b*y) = a*f(x) + b*f(y))。「ゼロマッピングはベクトルです」というステートメントがあいまいであるため、コンパイラはそれを許可しません(Javaに関しては、数学的にはそうではありません)。
この問題に対する明確な解決策を提案できますか?
// A vector in a finite-dimensional vector space over the real numbers.
interface Vector<V extends Vector<?>>
{
int dimension();
V plus(V v);
V times(double c);
}
interface Mapping<U extends Vector<?>, V extends Vector<?>>
// Does not inherit from Vector because the set of all mappings is an
// infinite-dimensional vector space.
{
V map(U u);
}
// Linear mappings, on the other hand, from one finite-dimensional vector space
// to another, do form a finite-dimensional vector space.
interface LinearMapping<U extends Vector<?>, V extends Vector<?>>
extends Mapping<U, V>, Vector<LinearMapping<U, V>>
{
}
// All elements of U are mapped to getImage(). If V is finite-dimensional, then
// the set of constant mappings is also a finite-dimensional vector space.
interface ConstMapping<U extends Vector<?>, V extends Vector<?>>
extends Mapping<U, V>, Vector<ConstMapping<U, V>>
{
V getImage();
}
// A zero mapping is both constant and linear, but cannot be defined as such.
interface ZeroMapping<U extends Vector<?>, V extends Vector<?>>
extends LinearMapping<U, V>, ConstMapping<U, V>
// Error: The interface Vector cannot be implemented more than once with
// different arguments: Vector<ConstMapping<U,V>> and Vector<LinearMapping<U,V>>
{
}