PPCF - Place Public Class First
According to Sun Code Conventions for Java, the public class or interface should be the first class or interface in the file.
Wrong
// some code
}
public class PPCM {
// some code
}
Tip: Place public class or interface first
Right
// some code
}
class Helper {
// some code
}