私は問題に直面しています、非常に奇妙な問題です。
クラス内のいずれかの静的変数を更新すると、クラス内の他の静的変数も更新されます。なぜこれが起こっているのかわかりません。
私を助けてください、私はこの問題をどうするかさえ知りません。
この行作成の問題。
private static cSet currentSet = new cSet();
private static cSet currentPracticeSet = new cSet();
public static void setCurrentPracticeSetRange(int from, int to)
{
Log.e(currentPracticeSet.getCards().size()+" And "+currentSet.getCards().size(), to+" and "+from);
getCurrentPracticeSet().getCards().clear();
getCurrentPracticeSet().getCards().addAll(getCurrentSet().getCards().subList(from, to));
Log.e("Range",currentSet.getCards().size()+"");
}
currentSet と CurrentPracticeSet は、クラスのプライベートな静的メンバーです。ありがとう、