Search Results

0
votes

Java: Best Practice for a Comparator class?

I like the solution you posted: Comparators as Inner Classes of the thing they compare. One thing you might want to do is to add a Factory Method to Employee that would create different kin …
0
votes

How can I alter the signature of a member function for a derived class in Java

What you have looks fine to me. Instances of class b will have access to both versions of the method. Calls to the 1-argument version will be automatically routed to class a. Calls to the …
-1
votes

How to increment a java String through all the possibilities?

It's not much of a "trick", but this works for 4-char strings. Obviously it gets uglier for longer strings, but the idea is the same. char array[] = new char[4]; for (char c0 = 'a' …
3
votes

Question about the Java Garbage Collector, nulls and memory leaking.

That will work fine. The GC will detect that the nodes are not reachable, so they'll all get cleaned up. …
-1
votes

Question about the Java Garbage Collector, nulls and memory leaking.

Here's some code to demonstrate how a stray handle into the middle of a list structure can keep the GC from cleaning up completely: import java.lang.ref.*; public class MemoryLeak1 …
3
votes

What’s the proper background process behaviour for a non-GUI Java app?

I'd only use sleep() if there's no work to be done. For example, if you're doing something like polling a task queue periodically and there's nothing there, sleep for a while then check again, etc …
0
votes

Use Hashtable, Vector or HashMap or ArrayList in Java

It seems to me that the only times you'd need the Collection itself to be thread safe are: If the Collection is visible from outside the class (Public or default scope) If yo …
1
vote

What is the best java image processing library/approach?

For commercial tools, you might want to try Snowbound. http://www.snowbound.com/ My experience with them is somewhat dated, bu …
0
votes

Why isn’t calling a static method by way of an instance an error for the Java compiler?

I just consider this: instanceVar.staticMethod(); to be shorthand for this: instanceVar.getClass().staticMethod(); If you always …