How to make System.out.println() shorter

后端 未结 12 1021
伪装坚强ぢ
伪装坚强ぢ 2020-12-04 07:10

Please advice on where can I find the lib in order to use the shorter expression of System.out.println() and where should I place that lib.

12条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-04 07:28

    Using System.out.println() is bad practice (better use logging framework) -> you should not have many occurences in your code base. Using another method to simply shorten it does not seem a good option.

提交回复
热议问题