How to mark logical sections of code in Java comments?

前端 未结 11 2075
温柔的废话
温柔的废话 2021-01-29 19:42

Java classes are generally divided into logical \"blocks\". Is there a convention to mark these sections? Ideally, it would be supported by the major IDEs.

I personally

11条回答
  •  礼貌的吻别
    2021-01-29 20:13

    For IntelliJ i do like:

            public void ________________INIT__________________() {};
    

    looking pretty in file structure!

提交回复
热议问题