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

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?