1
vote
Calling function when program exits in java
Adding a shutdown hook addShutdownHook(java.lang.Thread) is probably wh …
2
votes
Why Java and Python garbage collection methods are different?
Garbage collection is faster (more time efficient) than reference counting, if you have enough memory. For example, a copying gc traverses the "live" objects and copies them to a new space, and can …
5
votes
Can anyone recommend a simple Java logging framework?
IMHO, log4j is one of the simplest frameworks. You need one configuration file in the classpath, and that must contain just 5 lines (the default logger rules):
log4j.properties: …
2
votes
What is stopping you from using static analysis tools?
I regularly use FindBugs, since it seldom delivers false positives.
Most other tools show hundreds of warnings, many of questionable utility
Many tools don't have the abilit …
0
votes
Logging activities in multithreaded applications
In one of my (web) applications, i use a ThreadLocal logger that captures logging information into a StringBuilder. The logger object is initialized in the HttpServlet#service method, if a trace pa …
3
votes
Do I need to worry about the String Constant Pool?
As Mario said, the constant pool is only relevant to intern()ed Strings, and to Strings that are constants in java code (these are implicitly interned).
But there is one more caveat that mi …
0
votes
Scanning Java annotations at runtime
The Classloader API doesn't have an "enumerate" method, because class loading is an "on-demand" activity -- you usually have thousands of classes in your classpath, only a fraction of which will ev …
9
votes
Can every float be expressed exactly as a double?
Yes.
Proof by enumeration of all possible cases:
public class TestDoubleFloat {
public static void main(String[] args) {
for (long i = Integer.MIN_VALUE; i < …
0
votes
Why HttpServletRequest.getRemoteAddr() doesn’t work in Java servlet ?
If you call your servlet using http://localhost:8080/servlet, you will usually get "localhost" as the remote addr. If you use the name of …
11
votes
Why Java programs?
Java is vastly easier to work with, especially when developing large programs.
Debugging: Java generates nice Stacktraces
Stability: You can catch every exception
De …
2
votes
Updating from Java 1.4.2 to Java 6 (both Sun VMs) results in slower performance
If your application nearly runs out of free space, garbage collection time may dominate computation time.
Enable gc debugging to look for this. Or, even better, simply start jconsole and at …
1
vote
Accessing Java annotations from a Taglet
If your taglet is called from the standard doclet, you can access its internal state:
import com.sun.tools.doclets.standard.Standard;
ClassDoc currentcd = Standard.htmlDoclet.confi …
1
vote
Good language to develop a game server in?
The obvious candidates are Java and Erlang:
Pro Java:
ease of development
good development environments
stability, good stack traces
well-known (eas …
2
votes
On a 64-bit machine is the size of an int in Java 32 bits or 64 bits?
That's one of the consequences of the "compile once, run anywhere" slogan: Java execution is independent of underlying hardware word-size and endian-ness; the JVM works everywhere the same way. …
1
vote
What is the use of package level protection in java ?
Nowadays, packages are often used to model "software components", i.e. a package is a group of classes somehow related. Since "public" methods define the external interface of a software component, …
