Ccna final exam - java, php, javascript, ios, cshap all in one. This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
Wednesday, May 16, 2012
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?
maybe the JDepend is what you looking for.
ReplyDeleteMaybe 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.
ReplyDeleteAnother similar tool CodePro - Dependency Analysis.
ReplyDeleteYou can use the Netbeans Profiler tools.
ReplyDeleteIf 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.