Skip to main content

All Questions

Tagged with
0 votes
1 answer
215 views

Is it possible to estimate performance or cyclomatic complexity from decompiled code?

Let's say I have two alternative implementations of an algorithm, or two strategies. I could of course benchmark them with e.g. jmh. But is there any information I could get by looking at the ...
garci560's user avatar
  • 3,133
14 votes
1 answer
2k views

Private method not there when we do javap classname

Why a private method is not there when i use javap classname on console after compiling that java file? class A { private void one(){} public void two(){} protected void three(){} }
manish gupta's user avatar