If this is your product, you can request to edit it here.
Version Reviewing: 1.5
"Great Graphical Tool"
Summary:
- Evaluates your app before deploying it live to check CPU and memory, stability, memory leaks, etc - Great UDC feature added to v1.5 that collects the data to improve SDK quality.
|
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