Search Results

1
vote
3answers
99 views

Looking for feedback on a use of the Adapter pattern.

In a project at work we have a certain value type class in our domain model that includes a very large number of attributes... public class BigValueType { private Foo foo; p …
1
vote

OpenGL, Java and memory management

In the lower-level bindings for OpenGL like JOGL (but probably not so much for libraries like Java3D), you do have to manage resources like textures and buffers yourself by calling the glDele …
14
votes

(Java) Opinion: Preventing Exceptions vs. Catching Exceptions

In my opinion, it only makes sense to prevent a NullPointerException (for example) when a reference being null (again, for example) actually represents a valid program state. If it …
0
votes

In java Can objects be created with both static memory allocation and dynamic memory allocation?

The answers claiming that non-primitives are always allocated on the heap are dead wrong. JVMs can do escape analysis …
2
votes

How is the == operator implemented in Java?

Because a reference is just a number, a reference comparison comes down to just comparing two numbers. No hash is needed. …
1
vote

What does AtomicReference.compareAndSet() use for determination?

It compares the refrerences exactly as if you had used the == operator. That means that the references must be pointing to the same instance. Object.equals() is not used. …