If this is your product, you can request to edit it here.
Version Reviewing: xe 2015
"dynamic memory and threading error checking tool"
Summary:
Memory and thread debugger.Inspector XE is an easy to use memory and threading error debugger for C, C++, C# and Fortran applications that run on Windows* and Linux.
"find and fix threading errors."
Summary:
Easy to use, fast and effective.
"Saves time"
Summary:
Intel has improved their templates a lot from their 2007 release (when it was still Thread Checker). Though they’re still trying to make parallelism the only necessary means of managing scalability, they’ve managed to greatly reduce the need for virtualization. It has helped reduce the amount of time between design and production.
|
What does this code do?
public class Demo { public void method1() { synchronized (String.class) { System.out.println("on String.class object"); synchronized (Integer.class) { System.out.println("on Integer.class object"); } } }
Programming Language: Java