現在、クラスの 1 つと同じファイルにコンパレータ クラスがあります。
public class Tree {
public static Comparator<Tree> TreeSize = new Comparator<Tree>() {
public int compare(Tree t1, Tree t2)
{
etc...
}
}
}
Comparator クラスは独自のファイルに含める必要がありますか?