Skip to main content

How to find out what class is referenced the most?


How to find out what class is referenced the most?



I want to find the most important classes in a large system and i think that is the best way to do it. any ideas?



Source: Tips4allCCNA FINAL EXAM

Comments

  1. maybe the JDepend is what you looking for.

    ReplyDelete
  2. Maybe the Metrics plugin can do it? I haven’t tried it, but on the home page it mentions two coupling metrics and shows pretty graphs.

    ReplyDelete
  3. Another similar tool CodePro - Dependency Analysis.

    ReplyDelete
  4. You can use the Netbeans Profiler tools.

    If you choose the Memory mode you will be able to know Live Bytes /Live Objects / Allocated Objects and more per classes.

    I think this way you can find out the classes you use the more or that use the more memory.

    You have to run the app to know the results I don't know if your looking for a "static" way.

    ReplyDelete

Post a Comment