English 中文(简体)
是否应当将 j比较器的班子放在适当的档案中?
原标题:Should java comparator classes be in a seperate file?

目前,我有一个与我的班子相同的档案组别。

public class Tree {

    public static Comparator<Tree> TreeSize = new Comparator<Tree>() {
        public int compare(Tree t1, Tree t2)
        {
            etc...
        }
    }

}

比较等级是否属于自己的档案?

最佳回答

如果你只是一个比较国,那么为什么不仅仅通过执行“<代码>而强加自然秩序”。 比较 然后,你不仅能够保持班级,而且根本不需要第二班。

问题回答

(一) 不能100%确定你要求什么,因为上述法律并非合法。 你们可以在最高级别宣布这一点。 你们是否试图宣布第二类? 我假设这一点。

作为风格,我发现,在一个 Java来源档案中作出不止一项最高声明(尽管有可能)是很不常规的。 我当然希望有一份单独的资料来源文件,以备

您也可以成为<代码>的公开静态成员。 树木/代码类别。 这具有某种风格,因为它必然涉及<代码>的事例。 树木。 但是,我仍然希望尽可能单独开设高层课程。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签