在哪里可以找到 Java 的最佳实践文档?

发布于 2024-10-21 06:34:21 字数 141 浏览 4 评论 0原文

我想知道在哪里可以找到 Java 的最佳实践文档:

  • 编码标准
  • 错误管理
  • 日志记录最佳实践
  • 单元测试
  • 属性
  • 数据访问

等。

I would like to know where I can find best practices documentation for Java for:

  • Coding standards
  • Error management
  • Logging best practices
  • Unit testing
  • Properties
  • Data access

etc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小…楫夜泊 2024-10-28 06:34:21

Effective Java,第二版

之后,您可以查看特定领域的特定书籍(例如单元测试)。在 Java 中执行操作的方法有很多种,因此与 .NET 不同,许多常见问题通常没有明显的第一种方法 - 存在相互竞争的框架。

Effective Java, Second Edition

After that, you can look at specific books for specific areas (such as unit testing). There are a lot of ways to do things in Java, so unlike say .NET, there is often no obvious first approach to many common problems - there are competing frameworks.

醉城メ夜风 2024-10-28 06:34:21

除了良好的文档(您必须阅读、理解并牢记)之外,我建议使用一些静态代码分析工具,如果您违反了某些规则,它们会“及时”“通知”您项目。看看:

它们都集成到各种 IDE 并查看其文档(规则集)是相当有价值的。

但是——它们只是工具。您应该始终质疑他们的警告 - 这反过来又需要一些经验。

Beside good documentation (which you have to read, understand and keep in mind) I recommend using some static code analyzer tools which will 'inform' you 'just in time' on your porject if you violate some rules. Have a look at:

They all integrate to various IDEs and looking at their documentation (rule sets) is quite valuable.

But - they are just tools. You should always question their warnings - which in turn needs some experience.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文