如何自动删除Java类中的私有字段和方法

发布于 2024-11-09 00:41:07 字数 290 浏览 2 评论 0原文

我有一个代码生成器,它生成带有大量私有代码的类,例如:

class A {

  private void meth1() { ... }
  private int var1;

  private class SubA { private void meth2() {...} }
}

我正在寻找一种工具,可以在无需人工干预的情况下删除所有未使用的私有字段/方法和内部类。我还希望它能够处理源代码而不是字节代码,以便能够对生成的源代码进行度量。更改代码生成器是可能的,但我正在寻找更简单的东西。

I have a code generator which generates classes with a lot of private code like:

class A {

  private void meth1() { ... }
  private int var1;

  private class SubA { private void meth2() {...} }
}

I'm looking for a tool which would remove all unused private fields/methods and inner classes without human intervention. I would also like it to work on source code instead of byte code to be able to conduct metrics on the generated source code. Changing the code generator would be possible but I'm looking for something simpler.

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

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

发布评论

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

评论(2

以可爱出名 2024-11-16 00:41:07

Eclipse 是一个很棒的主意,内置了此功能。它会自动让您知道具有以下属性的私有方法/成员:没有在类中使用过。

Eclipse is a fantastic idea that has this feature built in. It will automatically let you know private methods/members that have not been used within a class.

天暗了我发光 2024-11-16 00:41:07

ProGuard 在对象级别上做得非常好。它可以为您提供一份报告,您可以使用该报告来追踪源中未使用的方法。我不知道有什么工具可以自动删除未使用方法的源。

ProGuard does a pretty good job with this at the object level. It can give you a report that you can use to track down the unused methods in the source. I don't know of a tool that automatically strips the source of unused methods.

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