Is there a Profiler for IntelliJ like the one for Matlab?
Say you have this code
a = true; i = 0; while(a) { if(a) i++ // some fancy stuff which takes 1 second each loop if(i > 1e6) break; }
Now i run the code
In Matlab, it will look like as soon as I open Profiler
calls time 1 0.0 a = true; 1 0.0 i = 0; 1 0.0 while(a) { 1e3 1.0 if(a) 1e3 0.4 i++ 1e3 1e3 // some fancy stuff which takes 1 second each loop 1e3 1.2 if(i > 1e3) break; }
java intellij-idea profiler
GavriYashar Jan 15 '14 at 20:34 2014-01-15 20:34
source share