User InverseFalcon - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:50:59Z http://stackoverflow.com/feeds/user/39455 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/437663/are-selectone-and-selectmany-choices-bounded-by-selectitems 2 Are selectOne and selectMany choices bounded by SelectItems? InverseFalcon 2009-01-13T01:12:52Z 2009-01-13T02:55:54Z <p>Do the JSF selectOne and selectMany controls only allow submission of values defined in the given selectItems? I'm concerned about parameter spoofing, and if this was built-in, I wouldn't require a validator to ensure the selected value was one of the valid choices.</p> http://stackoverflow.com/questions/322107/vectors-in-java-how-to-return-multiple-vectors-in-an-object/322162#322162 0 Answer by InverseFalcon for Vectors in Java, how to return multiple vectors in an object... InverseFalcon 2008-11-26T21:06:29Z 2008-11-26T21:06:29Z <p>Sounds like this should be tagged "Homework". </p> <p>Okay, first of all, are you required to use all these Vectors, or is that your own decision? Though some may point out that using ArrayLists is better, I'd do away with them and create your own Item class. </p> <p>This way, instead of having a conceptual item's properties distributed across multiple Vectors (the way you're doing now) you have 1 Item instance per item, with fields for all the data relevant to that item. Now, you only need one data structure (Vector or ArrayList) for all your item objects, and you can return that structure from getInventory().</p> http://stackoverflow.com/questions/310282/explaining-race-conditions-to-a-non-technical-audience/310604#310604 0 Answer by InverseFalcon for Explaining race conditions to a non-technical audience InverseFalcon 2008-11-22T00:08:50Z 2008-11-22T00:17:46Z <p>As you mentioned, you often need to introduce other concepts (mutual exclusion, threads of execution) to accurately describe race conditions, even in a metaphor. So try defining these terms (or at least getting the idea across) first, using metaphor.</p> <p>As a simple example, let's use a 4-way intersection (set in a country where you drive on the right). Divide the intersection into 4 quadrants: North-West, North-East, South-East, and South-West. Now call each quadrant a resource, and call each car a thread of execution. These cars only respect traffic systems, and since there are no stop signs or traffic lights at this intersection, the cars barrel right on through without slowing or considering traffic.</p> <p>You can easily show that simultaneous use of one of these quadrants by more than one car is bad, and results in a car crash. One obvious solution is to install a traffic system. The system ensures that no more than one car is passing through a quadrant at the same time. It can do this intricately, without tying up all the resources. For example, letting cars coming from the South make a left turn to head West (using south-east and north-west quadrants), while letting cars coming from the West make a right turn to head South (using the south-west quadrant). The traffic system is providing mutual exclusion, or preventing simultaneous use (by multiple cars) of a common resource (the quadrant of road in the intersection).</p> <p>This at least provides the ideas behind these definitions, the idea that simultaneously accessing shared resources <em>can</em> be bad, and that mutual exclusion can solve this problem. After this is established, you'll need to map these to a more appropriate metaphor to show what a race condition is and how it's one of those bad things that results from lack of mutual exclusion for a common resource. </p> <p>It takes a bit longer, but it grants some familiarity with terms and the big picture before drilling down into a more complex metaphor.</p> http://stackoverflow.com/questions/309892/when-overriding-equals-in-java-why-does-it-not-work-to-use-a-parameter-other-tha/309974#309974 -1 Answer by InverseFalcon for When overriding equals in Java, why does it not work to use a parameter other than Object? InverseFalcon 2008-11-21T19:53:26Z 2008-11-21T19:53:26Z <p>You're assuming that the <code>contains()</code> method in <code>List</code> knows the type of the object at runtime, which is incorrect. </p> <p>Because of erasure, <code>List&lt;MyClass&gt;</code> becomes just a regular <code>List</code> at runtime, so the <code>contains()</code> method sees its parameter as an <code>Object</code>, thus invoking Object's <code>equals()</code> instead of the one you defined for <code>MyClass</code> in its execution.</p> http://stackoverflow.com/questions/307073/resetting-a-field-lazy-loaded-with-the-double-check-idiom/307144#307144 3 Answer by InverseFalcon for Resetting a field lazy-loaded with the double-check idiom InverseFalcon 2008-11-20T22:37:28Z 2008-11-20T22:45:00Z <p>I think this should be safe, but only because you're storing the field in a local variable. After this is done, there's no way for the local variable reference to magically change to null, even if another thread is resetting field's value half-way through.</p> http://stackoverflow.com/questions/306713/java-collections-emptylist-returns-a-listobject/306773#306773 18 Answer by InverseFalcon for Java: Collections.emptyList() returns a List<Object>? InverseFalcon 2008-11-20T20:34:46Z 2008-11-20T20:34:46Z <p>The issue you're encountering is that even though the method <code>emptyList()</code> returns <code>List&lt;T&gt;</code>, you haven't provided it with the type, so it defaults to returning <code>List&lt;Object&gt;</code>. You can supply the type parameter, and have your code behave as expected, like this:</p> <pre><code>public Person(String name) { this(name,Collections.&lt;String&gt;emptyList()); } </code></pre> <p>Now when you're doing straight assignment, the compiler can figure out the generic type parameters for you. It's called type inference. For example, if you did this:</p> <pre><code>public Person(String name) { List&lt;String&gt; emptyList = Collections.emptyList(); this(name, emptyList); } </code></pre> <p>then the <code>emptyList()</code> call would correctly return a <code>List&lt;String&gt;</code>.</p> http://stackoverflow.com/questions/309631/what-cases-require-synchronized-method-access-in-java/309652#309652 Comment by InverseFalcon on What Cases Require Synchronized Method Access in Java? InverseFalcon 2008-11-21T18:27:42Z 2008-11-21T18:27:42Z Or you can use a java.util.concurrent.atomic.AtomicInteger. http://stackoverflow.com/questions/309631/what-cases-require-synchronized-method-access-in-java/309646#309646 Comment by InverseFalcon on What Cases Require Synchronized Method Access in Java? InverseFalcon 2008-11-21T18:09:56Z 2008-11-21T18:09:56Z Though be careful of the ++ and -- operators, they're not atomic. To be on the safe side, try using classes from java.util.concurrent.atomic.