Comments can appear at the beginning or end of any line in the source code file : Comments « Java Source And Data Type « SCJP






Comments are independent of any of the positioning rules.


public class MainClass{
    public static void main(String[] argv){
        System.out.println();
 
    }// End of main method
}








1.2.Comments
1.2.1.Java provides three styles of comments
1.2.2.Comments cannot be nested.
1.2.3.Comments can appear at the beginning or end of any line in the source code file