Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
项目(用 Java 编写)变得越来越大,一些代码将永远不会被使用。有没有办法检测那些死/无用的代码并清理它们。我对想法持开放态度。
使用像 Eclipse 这样的 IDE,您可能会在其中检测到一些未使用的代码并发出警告。
它将至少检测未使用的导入、私有方法或未使用的局部变量。
它不会检测公共方法或属性,因为它不能保证它可以被其他人使用。这是您必须查找的内容,将不需要公开的所有内容设为私有,然后您将获得那些警告助手。