15
votes
Java assertions underused
It's an abuse of assertions to use them to test user input. Throwing an IllegalArgumentException on invalid input is more correct, as it allows the calling method to catch the exceptio …
1
vote
Matching inexact company names in Java
I'd do LCS ignoring spaces, punctuation, case, and variations on "co", "llc", "ltd", and so forth.
…
0
votes
Retain precision with Doubles in java.
Use a BigDecimal. It even lets you specify rounding rules (like ROUND_HALF_EVEN, which will minimize statistical error by rounding to the even neighbor if both are the same distance; i.e. both 1.5 …
4
votes
0
votes
Beginner: Accessing values inside an object in Java
You'd just have getGigDet() return the String:
public String getGigDet()
{
return c.band;
}
But you have a rather odd structure for your da …
0
votes
Beginner: Accessing values inside an object in Java
Move the declarations to your main method:
public class Test {
public static void main(String args[]) {
Gig a = new Gig(1, "Queen", "Great", 1);
Gig b = new Gig( …
4
votes
Is Java incomplete?
Yeah, some parts of the Java API are lacking. I don't see this as a problem.
Plenty of great third-party APIs exist, which allows the best of the best to bubble to the top. The good stuff b …
0
votes
True random generation in Java
Quick and dirty:
public static int generateRandom() throws IOException
{
int num = 0;
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
for (int …
3
votes
What is proper pronunciation for a Java 5 “Executor”?
I'm never sure; thus, I alternate so as to annoy everyone equally.
…
6
votes
How to use ConcurrentLinkedQueue?
No, the methods don't need to be synchronized, and you don't need to define any methods; they are already in ConcurrentLinkedQueue, just use them. ConcurrentLinkedQueue does all the locking and stu …
2
votes
In Java what should I use for a PriorityQueue that returns the greatest element first?
I'd just use a Comparator. This way the sorting order is used only in your Queue, rather than attached to your class.
…
1
vote
Object-Oriented Programming: Java.Polynomial — should methods be ‘destructive’?
A polynomial has a fixed value in terms of its variables, and thus it only really makes sense for it to be immutable. Return a new Polynomial for your operations.
…
2
votes
Java; String replace (using regular expressions)?
What is your polynomial? If you're "processing" it, I'm envisioning some sort of tree of sub-expressions being generated at some point, and would think that it would be much simpler to use that to …
3
votes
Why are interfaces preferred to abstract classes?
"They aren't; both have their uses, and the answer depends on what you are trying to do. Could you be more specific, please?"
…
0
votes
Is there a CRUD generator utility in Java(any framework) like Scaffolding in Rails?
There's krank on Google Code. I haven't tried it yet, but it looks promising.
…
