If this is your product, you can request to edit it here.
"great tool"
Summary:
easy to use
"awesome performance"
Summary:
highly reliable
"Effective"
Summary:
Coverity’s static analysis tools have always been reliable, and their flagship, Coverity 5, has done a great deal to shore up our security. A few years ago, we worked with a white hat on several different occasions, so he was pretty familiar with what he needed to do when we came to him again last spring. Coverity 5 did a few simple things, such as point out some faulty syntax, but it also found a hole that was created when we had to do a rewrite for our exec team. After we patched the hole, the white hat made us pretty confident in what we had.
|
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