Cowan
|
Registered User
|
Software Architect in Java, with a background in vanilla ASP and a lot of experience in Microsoft SQL Server
|
|
1d |
answered | Genericized commons collection |
|
Dec 7 |
comment |
Memory effects of synchronization in Java For my explanation to a previous poster of how you can work that behaviour out from the JLS, ne0sonic, see stackoverflow.com/questions/1351168/… -- that's about volatile writes then reads but only step '2' in my explanation is different, the same happens with synchronized (where write and read are replaced with releasing and taking a particular object's lock respectively) |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 6 |
comment |
Memory effects of synchronization in Java Sorry, make that first reference 'thread A', not 'thread B'. Sigh. |
|
Dec 6 |
comment |
Memory effects of synchronization in Java OK sorry ne0sonic, I'm not sure we're discussing exactly the same thing and I may have misinterpreted your original comment. No, on entering a synchronized block you're not guaranteed to see the latest value of (say) y; but you are guaranteed to see at least the value of y that was visible to a previous thread at the time it released the lock. For example if y starts as 1, thread B does "y = 2; synchronized (aLock) { x = 9 }; y = 3;" then when thread B takes a lock on aLock, it is guaranteed to see at least the value of 2 for y. |
|
Dec 6 |
comment |
Memory effects of synchronization in Java Not true at all, ne0sonic, at least in the Java 5 memory model. There are guarantees around the values of y which will be seen -- any thread entering a synchronized block sees the 'current' values of all variables visible to the last thread the leave the sync block, at least 'as at' (and potentially after) the time of releasing the lock. That is, the happens-before of the release and the acquire on the lock ensure visibility of all state visible to the releasor thread, not just those changes which happened during the synchronized block (or just to those variables affected within the block) |
|
Dec 6 |
comment |
Memory effects of synchronization in Java Not technically correct, irreuptable... the data doesn't need to be flushed at the end. A 'flush' could perfectly legally happen right before the next thread takes the lock, it doesn't need to occur right after (or before) the updating thread releases it to meet the memory model. |
|
Dec 4 |
accepted | Configure Hibernate to escape underscores in LIKE clause using SQL Server dialect |
|
Dec 3 |
comment |
Basic Java threading issue +1 gab, as long as the counters are (a) monotonically increasing, and (b) kept properly in sync at the server end, and (c) kept properly PUBLISHED at the server end (not the same thing!) then this is sufficient. Reordering is irrelevant here as the JVM is only permitted to reorder when the apparent order of operations is not affected. i.e. this can no more be reordered problematically than 'a = 3; a = 2;' can be reordered to show 'a == 3' at the end, which is to say 'not at all'. |
|
Nov 29 |
answered | How do I count the number of occurrences of a char in a String? |
|
Nov 28 |
awarded | ● Enlightened |
|
Nov 28 |
awarded | ● Nice Answer |
|
Nov 27 |
comment |
Does simulation of closures in Java make sense? This. As soon as you start introducting objects to do this, you end up being able to reuse them, rather than repeating the same loop 20 times scattered throughout your code. |
|
Nov 27 |
answered | Some script is inserted by hacker in home page |
|
Nov 27 |
answered | Detect months with 31 days |
|
Nov 26 |
comment |
how the code behaves different for java and C compiler ? "you could just as well have gotten 24, segmentation fault, or a compile-time error" Or, indeed, "a suffusion of yellow" -- thateden.co.uk/dirk |
|
Nov 26 |
awarded | ● Enlightened |
|
Nov 26 |
awarded | ● Nice Answer |
|
Nov 26 |
accepted | Lucene seems to be caching search results - why? |
|
Nov 26 |
accepted | Java’s WeakHashMap and caching: Why is it referencing the keys, not the values? |
|
Nov 26 |
accepted | Is there an elegant way to remove nulls while transforming a Collection using Google Collections? |
|
Nov 26 |
comment |
Lucene seems to be caching search results - why? reopen() is more efficient, as recreating it causes all the segment files to be read, but reopen() knows to only read the segments that have been updated since the last open. |
|
Nov 26 |
comment |
Java - Create a new String instance with specified length and filled with specific character. Best solution? Or use repeat(), which doesn't require the empty string at the start and is arguably clearer in intent (see my answer) |
|
Nov 26 |
answered | Is it possible to have a JMS server without an application server? |
|
Nov 26 |
answered | Java - Create a new String instance with specified length and filled with specific character. Best solution? |
|
Nov 26 |
comment |
Is there an elegant way to remove nulls while transforming a Collection using Google Collections? I'd call it NOT_NULL_FILTER, personally. :) And there's already a static method for this in the Predicates class (see my answer). |
|
Nov 26 |
answered | Is there an elegant way to remove nulls while transforming a Collection using Google Collections? |
|
Nov 26 |
answered | Java’s WeakHashMap and caching: Why is it referencing the keys, not the values? |
|
Nov 26 |
answered | Lucene seems to be caching search results - why? |
|
Nov 25 |
answered | && (AND) and || (OR) in Java IF statements |
|
Nov 25 |
answered | AspectJ: using annotations to implement hashCode()? |
|
Nov 25 |
answered | Java find the first cause of an exception |
|
Nov 22 |
answered | How can I suppress java compiler warnings about Sun proprietary API |
|
Nov 21 |
answered | closures mean fully type-safe criteria? |
|
Nov 18 |
answered | Can I do this Generic thing? |
|
Nov 18 |
comment |
StringUtils.defaultString euphemism for collections? Have reported this idea as an enhancement to google-collections... see code.google.com/p/google-collections/… |
|
Nov 18 |
revised |
Java: convert List<String> to a join()d string typo in 'userForNull' method name |
|
Nov 18 |
answered | Java: convert List<String> to a join()d string |
|
Nov 17 |
comment |
How to keep up to date on available Java libraries? google-collections isn't Full of Win. It's Made Out Of 100% Pure Organic Free-Range Win, with a Rich Slathering Of Creamy Winsauce. |
|
Nov 15 |
answered | A collection that represents a concatenation of two collections in Java |
|
Nov 11 |
comment |
Is the following utility class thread-safe? @LES2: correct, exactly right. The JVM is quite entitled to make such observations if it wishes. It may not ever happen but this is exactly the kind of thing which can stop working when you switch from client to server VM, or from Hotspot to JRockit, or your method gets invoked for the 1,000,001st time which triggers some sort of JIT recompile, or whatever. Should be volatile at the very least. |
|
Nov 11 |
answered | Converting Java Collection of some class to Collection of String |
|
Nov 10 |
answered | Java logger that automatically determines caller’s class name |
|
Nov 8 |
answered | From arrayList to long[] |
|
Nov 8 |
comment |
Getting the Java thread id and stack trace of run-away Java thread Just for the record, 'nid' is 'native id' -- the underlying system's native identifier for the Java thread. |
|
Nov 6 |
comment |
Getters on an immutable type +1 indeed. Use it for consistency if required, but it is (as you say) a convention for JAVABEANS. There's a weird persistent belief that every object in your system has to be a JavaBean -- JavaBeans are specific objects for specific purposes (see the first paragraph of en.wikipedia.org/wiki/JavaBean) and there's no real reason to follow those conventions unless you're writing one. |
|
Nov 6 |
answered | How to interleave a String with a character sequence |
|
Oct 29 |
comment |
What’s the most elegant way to concatenate a list of values with delimiter in Java? +1 for google-collections. Yes, yes, I know -- 'an external dependency just for string joining?!?!' -- but it can make your code so much shorter + more expressive that, if you learn the API, it will pay for itself in an hour. :) |
|
Oct 17 |
comment |
Why is the Java date API (java.util.Date, .Calendar) such a mess? Ha, came here to post just this! Can't edit your post (need more rep) but: "... Date represents a specific instant in time, with millisecond precision. The design of this class is a very bad joke - a sobering example of how even good programmers screw up [...] GregorianCalendar is the only subclass of Calendar in the JDK. [...] Sun licensed this overengineered junk from Taligent - a sobering example of how average programmers screw up. " From Peter van Der Linden's comp.lang.java.programmers "Java Programmer's FAQ", online at e.g. faqs.org/faqs/computer-lang/… |
|
Oct 17 |
accepted | Is there a way to check if two Collections contain the same elements, independent of order? |
