Java console applications: Is System.out still the way to go?

前端 未结 4 1982
北恋
北恋 2020-12-19 15:10

Using System.out (and related) always seemed awkward because of the public field and now with the latest Netbeans gives a blatant \"Statement should be removed\

4条回答
  •  半阙折子戏
    2020-12-19 15:37

    Just use a logging framework and instead of using System.out log in debug level and in your development environment (NOT production) set your output to the console and loglevel to debug

提交回复
热议问题