だから、私はJavaで働いておりjava.sql.ResultSet
、自分のクラスにキャストしようとしていますMyResultSet
コードは次のとおりです:MyResultSet.java
public class MyResultSet implements java.sql.ResultSet{
//There are a bunch of Implemented Methods here. None of them have any custom code, They are all unchanged. Just didn't want to put huge code in here.
}
キャストに使用しようとしているコード
ResultSet r = getResultSet();
return (MyResultSet)r;
これを実行するたびに、「ClassCastException」が発生します。
誰かが実装クラスにキャストする方法を教えてもらえますか?..