そのため、ちょっと奇妙に見えると思われるコードに出くわしました。あなたの意見のいくつかがこれについてどうであるかを見たかった
public class Test {
public static void main(String[] args) {
HashMap m = new HashMap();
Test2 t2 = new Test2();
t2.fill(m);
}
}
public class Test2 {
public void fill(HashMap m) {
m.put(new Integer(0), new Integer(0));
}
}
このコードは問題ありませんか、それとも別の方法で実行する必要がありますか?
ありがとう