1
vote
java double comparison epsilon
Whoa whoa whoa. Is there a specific reason you're using floating-point for currency, or would things be better off with an …
1
vote
Function pointers/delegates in Java?
Have you ever used Swing/AWT? Their Event hierarchy solves a similar problem. The way Java passes functions around is with an interface, for example
public interface ActionHandler { …
0
votes
Java: Generic method, but array of primitive data types does not autobox
This appears to be by design, both to avoid such an expensive autoboxing operation, and because generics have to be backwards-compatible with the existing Java bytecode.
See …
1
vote
Is there any square root function more accurate than java.lang.Math.sqrt(double)
This question has been answered thoroughly enough already, but here is an experimental way to verify that Math.sqrt is accurate:
import static java.lang.Math.*;
public …
0
votes
How are weak references implemented?
Python's PEP 205 has a decent explanation of how weak references should behave in Python, and this gives some insight into how …
1
vote
Infinite loop at compile time?
If BlueJ does use its own compiler, you may have found a bug in it, or in BlueJ's build tools that surround it.
You might take a B …
3
votes
Learning Java Recursion, Ackerman function
You've exceeded the maximum recursion depth. That's one of the features of the Ackermann function. :)
If you call it with smaller numbers, like Ack(3,3), then it doesn't overfl …
4
votes
0
votes
Using OpenID in Standalone Application
OpenID doesn't say anything about what happens while the user is authenticating to their provider. It could be a username/password, it could be a cookie, it could be an SSL certificate, it could be …
