大约有 8,000 项符合查询结果(耗时:0.0230秒) [XML]
How to find unused/dead code in java projects [closed]
What tools do you use to find unused/dead code in large java projects? Our product has been in development for some years, and it is getting very hard to manually detect code that is no longer in use. We do however try to delete as much unused code as possible.
...
Java 8 NullPointerException in Collectors.toMap
The Java 8 Collectors.toMap throws a NullPointerException if one of the values is 'null'. I don't understand this behaviour, maps can contain null pointers as value without any problems. Is there a good reason why values cannot be null for Collectors.toMap ?
...
Scanning Java annotations at runtime [closed]
...h for classes whose fields have custom annotation?
– Javatar
Dec 12 '12 at 14:10
6
@Javatar Use J...
How would you implement an LRU cache in Java?
...kedHashMap</code> to do that, but that behavior is documented in the JavaDoc for
* <code>LinkedHashMap</code>.
* </p>
*
* @param eldest
* the <code>Entry</code> in question; this implementation doesn't care what it is, since the...
How do I print a double value without scientific notation using Java?
I want to print a double value in Java without exponential form.
14 Answers
14
...
Difference in System. exit(0) , System.exit(-1), System.exit(1 ) in Java
I'd like to know the difference between the following in Java
11 Answers
11
...
Naming conventions for java methods that return boolean(No question mark)
...sing question mark at the end of method/function names in other languages. Java doesn't let me do this. As a workaround how else can I name boolean returning methods in Java? Using an is , has , should , can in the front of a method sound okay for some cases. Is there a better way to name such ...
Why are you not able to declare a class as static in Java?
Why are you not able to declare a class as static in Java?
14 Answers
14
...
Does Java support default parameter values?
I came across some Java code that had the following structure:
24 Answers
24
...
Where in memory are my variables stored in C?
...
John BodeJohn Bode
98k1515 gold badges9696 silver badges170170 bronze badges
add...
