私は現在、エラーを起こしたプロジェクトを持っていますが、なぜそのエラーが発生するのかわかりません。
私の構造:
Class: Variable (commands.lib.Variable);
Class: ImageLoader extends Variable (commands.lib.Variable);
次に、変数を ImageLoader にキャストします。
// There is a variable made with: Variable v = new ImageLoader();
public static Variable(commands.lib.Variable) getVariable(String value){...}
ImageLoader t = (ImageLoader)getVariable(ab[2]);
しかし、これは私にエラーを与えます:
Exception in thread "main" java.lang.ClassCastException: commands.lib.Variable cannot be cast to commands.variable.ImageLoader
もちろん、私はClassCastExceptionをグーグルで検索し、この投稿は結果から出てきました: Javaでの「ClassCastException」の説明
ここで誰かが説明します:
Animal a = new Dog();
Dog d = (Dog) a; // no problem, the type animal can be casted to a dog, because its a dog
Cat c = (Dog) a; // raises class cast exception, you cant cast a dog to a cat
したがって、私のコードでは次のようになります。
Variable a = new ImageLoader();
ImageLoader b = (ImageLoader) a; // This should work, but will throw a ClassCastException
Array c = (Array) a; // This should throw a error
だから私は少し無知です。誰かが私を助けて、エラーを修正してくれることを願っています。
ご挨拶、
ロビン