User mmyers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T07:55:05Zhttp://stackoverflow.com/feeds/user/13531http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/431456/how-can-i-make-a-usb-flash-drive-appear-not-appear-as-a-cd-drive1How can I make a USB flash drive appear/not appear as a CD drive?mmyers2009-01-10T18:09:46Z2009-12-22T00:23:43Z
<p>I recently was given a small USB flash drive as an advertising gimmick. When I plug it in, only one drive appears: a CD drive with 42kb used (just an autorun.inf file which launches the manufacturer's website). I know <a href="http://u3.com/default.aspx" rel="nofollow">U3</a> drives also appear as CD drives, but their <a href="http://u3.com/support/default.aspx#CQ3" rel="nofollow">uninstall utility</a> only works for their own drives.</p>
<p>How can I make it appear as a USB drive instead? Conversely, if I wanted to do the same thing for myself, how would I make it appear as a CD drive?</p>
<p>I'm sure it can be done programmatically, or else the uninstall program wouldn't work.</p>
http://stackoverflow.com/questions/1909397/if-an-onfocus-event-handler-is-added-with-attachevent-how-can-i-access-it1If an onfocus event handler is added with attachEvent, how can I access it?mmyers2009-12-15T18:25:19Z2009-12-15T19:09:14Z
<h3>Background:</h3>
<p>I'm writing a script (in VBA, if that matters) to input data into a web-based system. Some of the system's validation is only run when a field is focused, so I've been calling <code>.Focus</code> on the fields in VBA to force it to run. But that steals the systemwide focus; rather annoying if I am doing anything else while the job is running.</p>
<p>I want the validation to be triggered without stealing the focus. So I am trying to directly call whatever event handler is registered to the input field.</p>
<h3>Problem:</h3>
<p>All event handlers in the web app are added with <code>element.attachEvent()</code>, which means the <code>onfocus</code> and <code>onblur</code> properties (which I believe are the ones I want) are not set.<br>
<strong>Is there any way to retrieve the handlers without resorting to even more evil hacks?</strong></p>
<p>Alternatively, is there a better way to do this without having to find the event handlers? I'm pretty new to JavaScript, so I could easily be missing something.</p>
<p><hr></p>
<p><strong>Edit:</strong> Is there any other reason the focus might be stolen by the VBA code? I cannot find any other references to <code>.Focus</code> or even AutoIt's <code>WinActivate</code>, but even with the suggestions here, the problem still occurs.</p>
http://stackoverflow.com/questions/1904072/java-difference-in-usage-between-thread-interrupted-and-thread-isinterrupted/1904095#19040958Answer by mmyers for Java: Difference in usage between Thread.interrupted() and Thread.isInterrupted()?mmyers2009-12-14T22:55:19Z2009-12-14T23:00:37Z<p><a href="http://java.sun.com/javase/6/docs/api/java/lang/Thread.html#interrupted%28%29" rel="nofollow"><code>interrupted()</code></a> is <code>static</code> and checks the current thread. <a href="http://java.sun.com/javase/6/docs/api/java/lang/Thread.html#isInterrupted%28%29" rel="nofollow"><code>isInterrupted()</code></a> is an instance method which checks the <code>Thread</code> object that it is called on.</p>
<p>A common error is to call a static method on an instance.</p>
<pre><code>Thread myThread = ...;
if (myThread.interrupted()) {} // WRONG! This might not be checking myThread.
if (myThread.isInterrupted()) {} // Right!
</code></pre>
<p>Another difference is that <code>interrupted()</code> also clears the status of the current thread. In other words, if you call it twice in a row and the thread is not interrupted between the two calls, the second call will return <code>false</code> even if the first call returned <code>true</code>.</p>
<p>The <a href="http://java.sun.com/javase/6/docs/api/index.html" rel="nofollow">Javadocs</a> tell you important things like this; use them often!</p>
http://stackoverflow.com/questions/1901723/does-the-string-pool-take-local-variables/1901771#19017713Answer by mmyers for Does the String pool take local variables?mmyers2009-12-14T16:02:16Z2009-12-14T16:02:16Z<p>Yes, <code>str</code> is only a local variable, but it is pointing into the string pool; on two successive invocations of the method, <code>str</code> will be pointing to the same place in the pool, so you are still synchronizing on the same object. </p>
<p>If your code was</p>
<pre><code>String str = new String("hello");
</code></pre>
<p>then you would indeed be synchronizing on a local object.</p>
http://stackoverflow.com/questions/1868182/in-java-what-do-arrays-inherit-from-can-i-do-this/1868228#18682286Answer by mmyers for In Java what do arrays inherit from? Can I do this?mmyers2009-12-08T16:43:40Z2009-12-08T17:21:56Z<p>Arrays only implement <code>Serializable</code> and <code>Cloneable</code> in Java<sup>1</sup>; so there is no generic way to do this. You'd have to implement a separate method for each type of array (since primitive arrays like <code>int[]</code> cannot be cast to <code>Object[]</code>).</p>
<p>But in this case, you don't have to because <a href="http://java.sun.com/javase/6/docs/api/java/util/Arrays.html" rel="nofollow"><code>Arrays</code></a> can do it for you:</p>
<pre><code>System.out.println(Arrays.toString(names));
System.out.println(Arrays.toString(numbers));
</code></pre>
<p>This will yield something like:</p>
<pre>
[Tom, Dick, Harry]
[1, 2, 3, 4]
</pre>
<p>If that's not good enough, you're stuck having to implement a version of your method for each possible array type, like <code>Arrays</code> does.</p>
<pre><code>public static void printAll(Object[] items) {
for (Object o : items)
System.out.println(o);
}
public static void printAll(int[] items) {
for (int i : items)
System.out.println(i);
}
public static void printAll(double[] items) {
for (double d : items)
System.out.println(d);
}
// ...
</code></pre>
<p>Note that the above only applies to arrays. <a href="http://java.sun.com/javase/6/docs/api/java/util/Collection.html" rel="nofollow"><code>Collection</code></a> implements <a href="http://java.sun.com/javase/6/docs/api/java/lang/Iterable.html" rel="nofollow"><code>Iterable</code></a>, so you can use:</p>
<pre><code>public static <T> void printAll(Iterable<T> items) {
for (T t : items)
System.out.println(t);
}
</code></pre>
<p><sup>1</sup> See <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/arrays.html#10.7" rel="nofollow">JLS §10.7 Array Members</a>.</p>
http://stackoverflow.com/questions/1841739/in-jvm-heap-can-there-be-more-than-one-object-with-the-same-hash-code/1841773#184177320Answer by mmyers for In JVM heap can there be more than one object with the same hash code?mmyers2009-12-03T18:08:10Z2009-12-03T18:13:28Z<p>Yes.</p>
<pre><code>public class MyObject {
@Override
public int hashCode() {
return 42;
}
public static void main(String[] args) {
MyObject obj1 = new MyObject();
MyObject obj2 = new MyObject(); // Ta-da!
}
}
</code></pre>
<p>For a less flippant answer, consider the <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html#hashCode%28%29" rel="nofollow">hashCode Javadocs</a>:</p>
<blockquote>
<p>The general contract of hashCode is:</p>
<ul>
<li>... (snip) ...</li>
<li>If two objects are equal according to the equals(Object) method, then calling the hashCode method on each of the two objects must produce the same integer result. </li>
</ul>
</blockquote>
http://stackoverflow.com/questions/1829564/java-resourcebundle-performance/1829583#18295831Answer by mmyers for Java ResourceBundle Performancemmyers2009-12-01T23:06:18Z2009-12-01T23:06:18Z<p>According to the <a href="http://java.sun.com/javase/6/docs/api/java/util/ResourceBundle.html" rel="nofollow">Javadocs</a>:</p>
<blockquote>
<p>Resource bundle instances created by the <code>getBundle</code> factory methods are cached by default, and the factory methods return the same resource bundle instance multiple times if it has been cached.</p>
</blockquote>
<p>So you shouldn't need to do caching on your own. But if you need finer-grained control of the caching behavior, you can use the <a href="http://java.sun.com/javase/6/docs/api/java/util/ResourceBundle.html#getBundle%28java.lang.String,%20java.util.ResourceBundle.Control%29" rel="nofollow"><code>getBundle(String, ResourceBundle.Control)</code></a> overload and pass a customized <a href="http://java.sun.com/javase/6/docs/api/java/util/ResourceBundle.Control.html" rel="nofollow"><code>Control</code></a> in.</p>
http://stackoverflow.com/questions/1793472/returning-a-match-from-a-listkeyvaluepairstring-string/1793499#17934990Answer by mmyers for Returning a match from a List<KeyValuePair<string,string>>mmyers2009-11-24T22:49:59Z2009-11-24T22:49:59Z<p>Your <code>List</code> doesn't contain <code>KeyValuePairs</code>, so you can't loop through it as if it did. Try something like this:</p>
<pre><code>foreach (CD comCD in tempComCols)
{
if (comCD.MyKeyValueProp.Key.Contains(track))
{
return comCD;
}
}
</code></pre>
<p>But as McKay said, if your <code>CD</code> class does nothing but encapsulate a <code>KeyValuePair</code>, a <code>Dictionary</code> would be much easier.</p>
http://stackoverflow.com/questions/1752381/whats-the-best-way-to-return-multiple-enum-values-java-and-c/1752422#17524229Answer by mmyers for What's the best way to return multiple enum values? (java and C#)mmyers2009-11-17T22:46:08Z2009-11-17T22:46:08Z<p>In Java, the most natural way to do this is with <a href="http://java.sun.com/javase/6/docs/api/java/util/EnumSet.html" rel="nofollow"><code>EnumSet</code></a>. An example of constructing one:</p>
<pre><code>return EnumSet.of(BuyConditions.NotEnoughMoney, BuyConditions.AlreadyOwned);
</code></pre>
http://stackoverflow.com/questions/1750165/worst-case-running-time-big-o/1750191#17501913Answer by mmyers for Worst case running time (Big O)mmyers2009-11-17T16:48:03Z2009-11-17T16:48:03Z<p>You're given two formulae and two different values of <code>n</code> to plug into them. Then you're asked which formula has the larger value in each case.</p>
<p>I suggest plugging the two values of <code>n</code> into the formulae and figuring out which is larger in each case.</p>
http://stackoverflow.com/questions/1750106/how-can-i-use-pointers-in-java/1750141#17501418Answer by mmyers for How can I use pointers in Java?mmyers2009-11-17T16:39:48Z2009-11-17T16:39:48Z<p>Java does have pointers. Any time you create an object in Java, you're actually creating a pointer to the object; this pointer could then be set to a different object or to <code>null</code>, and the original object will still exist (pending garbage collection).</p>
<p>What you can't do in Java is pointer arithmetic. You can't dereference a specific memory address or increment a pointer.</p>
<p>If you really want to get low-level, the only way to do it is with the <a href="http://java.sun.com/javase/6/docs/technotes/guides/jni/" rel="nofollow">Java Native Interface</a>; and even then, the low-level part has to be done in C or C++.</p>
http://stackoverflow.com/questions/1725413/pointer-in-struct-question-have-i-done-it-correct/1725423#17254234Answer by mmyers for Pointer in struct question. Have I done it correct?mmyers2009-11-12T21:08:33Z2009-11-12T21:08:33Z<p>You're dereferencing <code>mono_channel</code> in the first version but not in the second. Try</p>
<pre><code>int wrote = sf_writef_double(outfile, *(data->mono_channel), frames);
</code></pre>
http://stackoverflow.com/questions/1723696/how-to-use-a-method-from-a-class-in-another-class-without-extending/1723729#17237295Answer by mmyers for How to use a method from a class in another class without extendingmmyers2009-11-12T16:57:48Z2009-11-12T16:57:48Z<p>Declare the <code>getRace()</code> method in <code>Karakter</code> (note that the English spelling is "Character", but that's neither here nor there).</p>
<p>Since <code>Karakters</code> only knows that it's dealing with objects of type <code>Karakter</code>, it can't know that both implementations have a <code>getRace</code> method. Declaring the method in the base class solves this problem.</p>
<p>It should look like this:</p>
<pre><code>public abstract String getRace();
</code></pre>
<p>And the <code>Karakter</code> class will also have to be made <code>abstract</code>.</p>
http://stackoverflow.com/questions/1702601/unidentified-whitespace-character-in-java/1702621#17026213Answer by mmyers for Unidentified whitespace character in Javammyers2009-11-09T17:47:21Z2009-11-09T17:47:21Z<p>It's a <a href="http://www.fileformat.info/info/unicode/char/00a0/index.htm" rel="nofollow">non-breaking space</a>. According to the <a href="http://java.sun.com/javase/6/docs/api/java/util/regex/Pattern.html" rel="nofollow"><code>Pattern</code> Javadocs</a>, <code>\\s</code> matches <code>[ \t\n\x0B\f\r]</code>, so you'll have to explicitly add <code>\xA0</code> to your regex if you want to match it.</p>
http://stackoverflow.com/questions/1681180/homework-question-in-c/1681228#168122825Answer by mmyers for Homework question in C++mmyers2009-11-05T15:19:35Z2009-11-05T18:11:32Z<p>Do you know how to:</p>
<ul>
<li><p>get input as a string?</p></li>
<li><p>loop through the characters of a string?</p></li>
<li><p>test whether a character is uppercase or lowercase?</p></li>
<li><p>change a character from uppercase to lowercase?</p></li>
</ul>
<p>If so, then you already know enough to answer this question. Break it up into smaller pieces and it should be quite manageable.</p>
<p>If you try it and run into problems, then ask another question and tell us what you've tried; people here are generally more than happy to help someone who has shown they made an effort (after all, we were all beginners once!). But giving up before even trying is the worst thing you can do here.</p>
http://stackoverflow.com/questions/1669282/find-max-value-in-java-with-a-predefined-comparator/1669310#166931014Answer by mmyers for Find max value in Java with a predefined comparator.mmyers2009-11-03T18:36:34Z2009-11-03T20:03:29Z<p>If <code>Foo</code> implements <code>Comparable<Foo></code>, then <a href="http://java.sun.com/javase/6/docs/api/java/util/Collections.html#max%28java.util.Collection%29" rel="nofollow"><code>Collections.max(Collection)</code></a> is what you're looking for.</p>
<p>If not, you can create a <code>Comparator<Foo></code> and use <a href="http://java.sun.com/javase/6/docs/api/java/util/Collections.html#max%28java.util.Collection,%20java.util.Comparator%29" rel="nofollow"><code>Collections.max(Collection, Comparator)</code></a> instead.</p>
<h3>Example</h3>
<pre><code>// Assuming that Foo implements Comparable<Foo>
List<Foo> fooList = ...;
Foo maximum = Collections.max(fooList);
// Normally Foos are compared by the size of their baz, but now we want to
// find the Foo with the largest gimblefleck.
Foo maxGimble = Collections.max(fooList, new Comparator<Foo>() {
@Override
public int compare(Foo first, Foo second) {
if (first.getGimblefleck() > second.getGimblefleck())
return 1;
else if (first.getGimblefleck() < second.getGimblefleck())
return -1;
return 0;
}
});
</code></pre>
http://stackoverflow.com/questions/1655500/what-hidden-functionality-do-you-put-in-your-software/1668244#16682441Answer by mmyers for What hidden functionality do you put in your software?mmyers2009-11-03T15:57:55Z2009-11-03T15:57:55Z<p>I think this sort of thing is a big reason why games almost always have cheat codes. I've found that adding cheats can save a lot of time during debugging; and once they're in, they might as well stay in for production.</p>
http://stackoverflow.com/questions/1644609/c-problem-with-byte/1644627#164462718Answer by mmyers for C# problem with byte[]mmyers2009-10-29T15:40:46Z2009-10-29T15:40:46Z<p>Leading 0's don't get printed.</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game11What is a good random number generator for a game?mmyers2009-06-25T23:34:43Z2009-10-23T21:36:23Z
<p>What is a good random number generator to use for a game in C++?</p>
<p>My considerations are:</p>
<ol>
<li>Lots of random numbers are needed, so speed is good.</li>
<li>Players will always complain about random numbers, but I'd like to be able to point them to a reference that explains that I really did my job. </li>
<li>Since this is a commercial project which I don't have much time for, it would be nice if the algorithm either a) was relatively easy to implement or b) had a good non-GPL implementation available.</li>
<li>I'm already using <code>rand()</code> in quite a lot of places, so any other generator had better be good to justify all the changes it would require.</li>
</ol>
<p>I don't know much about this subject, so the only alternative I could come up with is the <a href="http://en.wikipedia.org/wiki/Mersenne%5FTwister" rel="nofollow">Mersenne Twister</a>; does it satisfy all these requirements? Is there anything else that's better?</p>
<p><strong>Edit:</strong> Mersenne Twister seems to be the consensus choice. But what about point #4? Is it really that much better than <code>rand()</code>?</p>
<p><strong>Edit 2:</strong> Let me be a little clearer on point 2: There is no way for players to cheat by knowing the random numbers. Period. I want it random enough that people (at least those who understand randomness) can't complain about it, but I'm not worried about predictions.
That's why I put speed as the top consideration.</p>
<p><strong>Edit 3:</strong> I'm leaning toward the Marsaglia RNGs now, but I'd still like more input. Therefore, I'm setting up a bounty.</p>
<p><strong>Edit 4:</strong> Just a note: I intend to accept an answer just before midnight UTC today (to avoid messing with someone's rep cap). So if you're thinking of answering, don't wait until the last minute!<br />
Also, I like the looks of Marsaglia's XORshift generators. Does anyone have any input about them?</p>
http://stackoverflow.com/questions/1574960/java-clone-and-equality-checks/1575007#15750075Answer by mmyers for Java: clone() and equality checksmmyers2009-10-15T20:53:57Z2009-10-15T20:53:57Z<p>Oscar Reyes has the correct answer. I'll just add that <a href="http://java.sun.com/javase/6/docs/api/java/util/Arrays.html#equals%28int%5B%5D,%20int%5B%5D%29" rel="nofollow"><code>Arrays.equals()</code></a> does exactly the sort of equality comparison that you're looking for.</p>
<pre><code>int[] nums = new int[] {0, 1, 2};
int[] list = nums.clone();
System.out.println(Arrays.equals(nums, list)); // prints "true"
</code></pre>
http://stackoverflow.com/questions/1574580/is-it-bad-practice-to-use-an-enums-ordinal-value-to-index-an-array-in-java/1574600#15746003Answer by mmyers for Is it bad practice to use an Enum's ordinal value to index an array in Java?mmyers2009-10-15T19:41:54Z2009-10-15T20:07:57Z<p>The documentation only says that <em>most</em> programmers will have no use for the method. This is one case of legitimate use. <em>Assuming your class controls both the enum and the array</em>, there is no reason to fear the <code>ordinal()</code> method for indexing the array (since you can always keep them in sync).</p>
<p>However, if your usage gets any more complicated, you will likely want to use an <a href="http://java.sun.com/javase/6/docs/api/java/util/EnumMap.html" rel="nofollow"><code>EnumMap</code></a> instead, as has been suggested.</p>
http://stackoverflow.com/questions/1573527/java-pass-by-reference-listiterator-add/1573978#15739785Answer by mmyers for Java: Pass by reference / ListIterator.add()mmyers2009-10-15T17:45:12Z2009-10-15T17:45:12Z<p>I almost hate to say this after all the mental exercises people have been going through, but... the problem is simply a typo.</p>
<pre><code>@Override
public boolean contains(Object arg0) {
return indexOf(arg0) == -1;
}
</code></pre>
<p>should be</p>
<pre><code>@Override
public boolean contains(Object arg0) {
return indexOf(arg0) != -1;
}
</code></pre>
<p><code>contains</code> was returning <code>true</code> only if the object was <em>not</em> in the list!</p>
http://stackoverflow.com/questions/1520982/to-init-or-to-construct/1521002#15210024Answer by mmyers for To init or to constructmmyers2009-10-05T16:15:02Z2009-10-05T16:15:02Z<p>I dislike it. It seems to me that after construction, an object should be... well... constructed. That code leaves it in an invalid state instead, which is almost<sup>1</sup> never a good thing.</p>
<p> </p>
<p><sup>1</sup> <sub>Weasel word inserted to account for unforeseen circumstances.</sub></p>
http://stackoverflow.com/questions/1506699/help-me-with-a-simple-regular-expression/1506716#15067167Answer by mmyers for Help me with a simple regular expressionmmyers2009-10-01T21:51:41Z2009-10-01T21:51:41Z<p>You shouldn't have backslash-escaped the dots; since you did, the engine is trying to match a literal dot, not "any character" like you're expecting.</p>
<p>Try:</p>
<pre><code>SELECT\s.*FROM\s.*WHERE\s.*
</code></pre>
<p>Also, as others have posted, make sure it's in case-insensitive mode. How you do that depends on the language you're using.</p>
http://stackoverflow.com/questions/1500827/java-how-can-i-require-a-method-argument-to-implement-multiple-interfaces/1500893#150089311Answer by mmyers for Java: How can I require a method argument to implement multiple interfaces?mmyers2009-09-30T22:00:34Z2009-09-30T22:00:34Z<p>You could do it with generics:</p>
<pre><code>public <T extends Appendable & Closeable> void spew(T t){
t.append("Bleah!\n");
if (timeToClose())
t.close();
}
</code></pre>
<p>Your syntax was <em>almost</em> right, actually.</p>
http://stackoverflow.com/questions/1461340/error-c2679-binary-no-operator-found-which-takes-a-right-hand-operand-of/1461357#14613572Answer by mmyers for error C2679: binary '<<' : no operator found which takes a right-hand operand of type 'Rectangle' (or there is no acceptable conversion)mmyers2009-09-22T17:10:25Z2009-09-22T17:10:25Z<p>Looks like you need some parentheses:</p>
<pre><code>cout << "Are B and C equal? Ans: " << (rectB==rectC) << endl;
</code></pre>
<p>It's an operator precedence issue; the <code><<</code> is being applied to <code>rectB</code> before the <code>==</code> runs.</p>
http://stackoverflow.com/questions/1445025/what-is-the-advantage-of-a-do-whilefalse/1445033#144503311Answer by mmyers for What is the advantage of a do-while(false)?mmyers2009-09-18T14:49:12Z2009-09-18T14:49:12Z<p>No advantage. Don't do it.</p>
http://stackoverflow.com/questions/1440006/java-sortedmap-treemap-comparable-how-to-use/1440035#14400351Answer by mmyers for Java: SortedMap, TreeMap, Comparable? How to use?mmyers2009-09-17T16:50:16Z2009-09-17T17:16:56Z<ol>
<li>The simpler way is to implement <code>Comparable</code> with your existing objects, although you could instead create a <code>Comparator</code> and pass it to the <code>SortedMap</code>.<br />
Note that <a href="http://java.sun.com/javase/6/docs/api/java/lang/Comparable.html" rel="nofollow"><code>Comparable</code></a> and <a href="http://java.sun.com/javase/6/docs/api/java/util/Comparator.html" rel="nofollow"><code>Comparator</code></a> are two different things; a class implementing <code>Comparable</code> compares <code>this</code> to another object, while a class implementing <code>Comparator</code> compares two <em>other</em> objects.</li>
<li>If you implement <code>Comparable</code>, you don't need to pass anything special into the constructor. Just call <code>new TreeMap<MyObject>()</code>. (<strong>Edit:</strong> Except that of course <code>Maps</code> need two generic parameters, not one. Silly me!)<br />
If you instead create another class implementing <code>Comparator</code>, pass an instance of that class into the constructor.</li>
<li>Yes, according to the <a href="http://java.sun.com/javase/6/docs/api/java/util/TreeMap.html" rel="nofollow"><code>TreeMap</code> Javadocs</a>.</li>
</ol>
<p><hr /></p>
<p><strong>Edit:</strong> On re-reading the question, none of this makes sense. If you already have a list, the sensible thing to do is implement <code>Comparable</code> and then call <a href="http://java.sun.com/javase/6/docs/api/java/util/Collections.html#sort%28java.util.List%29" rel="nofollow"><code>Collections.sort</code></a> on it. No maps are necessary.</p>
<p>A little code:</p>
<pre><code>public class MyObject implements Comparable<MyObject> {
// ... your existing code here ...
@Override
public int compareTo(MyObject other) {
// do smart things here
}
}
// Elsewhere:
List<MyObject> list = ...;
Collections.sort(list);
</code></pre>
<p>As with the <code>SortedMap</code>, you could instead create a <code>Comparator<MyObject></code> and pass it to <a href="http://java.sun.com/javase/6/docs/api/java/util/Collections.html#sort%28java.util.List,%20java.util.Comparator%29" rel="nofollow"><code>Collections.sort(List, Comparator)</code></a>.</p>
http://stackoverflow.com/questions/1440134/java-what-is-the-difference-between-implementing-comparable-and-comparator/1440161#14401612Answer by mmyers for Java: What is the difference between implementing Comparable and Comparator?mmyers2009-09-17T17:15:09Z2009-09-17T17:15:09Z<p><code>Comparable</code> is usually preferred. But sometimes a class already implements <code>Comparable</code>, but you want to sort on a different property. Then you're forced to use a <code>Comparator</code>.</p>
<p>Some classes actually provide <code>Comparators</code> for common cases; for instance, <a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html" rel="nofollow"><code>String</code></a>s are by default case-sensitive when sorted, but there is also a static <code>Comparator</code> called <a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html#CASE%5FINSENSITIVE%5FORDER" rel="nofollow"><code>CASE_INSENSITIVE_ORDER</code></a>.</p>
http://stackoverflow.com/questions/1428677/mutating-a-lock-object/1428722#14287223Answer by mmyers for Mutating a lock objectmmyers2009-09-15T17:58:39Z2009-09-15T17:58:39Z<p>I don't know that I've ever heard that assertion. Certainly it would be bad to reassign <code>lockObject</code> (because then you'd be locking on a different object elsewhere), but I don't see anything wrong with mutating it.</p>
<p>Furthermore, it is fairly common to have a <code>synchronized</code> method which mutates an object:</p>
<pre><code>public synchronized void setSomething(int something) {
this.something = something;
}
</code></pre>
<p>In this case, the object itself is used as the lock. What is the point in synchronizing on a separate object?</p>
http://stackoverflow.com/questions/1941391/java-to-i-or-i-and-whats-the-differenceComment by mmyers on Java - to i++ or ++i and whats the difference mmyers2009-12-21T17:30:21Z2009-12-21T17:30:21ZSee <a href="http://stackoverflow.com/questions/1534904/what-is-the-difference-between-i-and-i-in-java" rel="nofollow" title="what is the difference between i and i in java">stackoverflow.com/questions/1534904/…</a> and <a href="http://stackoverflow.com/questions/1094872/is-there-a-difference-between-x-and-x-in-java" rel="nofollow" title="is there a difference between x and x in java">stackoverflow.com/questions/1094872/…</a>.http://stackoverflow.com/questions/1927477/can-a-heap-allocated-object-be-const-in-c/1927566#1927566Comment by mmyers on Can a heap-allocated object be const in C++?mmyers2009-12-18T23:17:23Z2009-12-18T23:17:23ZNeat! I had no idea <code>const</code> could be used with <code>new</code> like that.http://stackoverflow.com/questions/1929053/retrieving-hashsetstring-object-referenceComment by mmyers on Retrieving HashSet<string> object referencemmyers2009-12-18T16:09:45Z2009-12-18T16:09:45ZAnd if <code>strings</code> aren't immutable, mutating the string will likely cause the <code>HashSet</code> to "lose" it (i.e. it will appear when you iterate through the set but you won't be able to find it with <code>Contains()</code> again).http://stackoverflow.com/questions/1929053/retrieving-hashsetstring-object-referenceComment by mmyers on Retrieving HashSet<string> object referencemmyers2009-12-18T16:08:09Z2009-12-18T16:08:09ZYou mean you want to grab a reference so you can mutate it? Aren't `string`s immutable? And if you can't mutate it, why don't you just remove the old one and add the new one?http://stackoverflow.com/questions/1927719/what-is-the-most-elegant-way-of-converting-the-string-a-pdf-to-a-jpg/1927741#1927741Comment by mmyers on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ?mmyers2009-12-18T15:55:02Z2009-12-18T15:55:02ZWelcome to the Reversal club. Come out back and we'll teach you the secret handshake. (It's not really that secret; you just have to turn around and use your left hand behind your back.)http://stackoverflow.com/questions/1922897/serializable-and-transientComment by mmyers on Serializable and transientmmyers2009-12-17T16:52:18Z2009-12-17T16:52:18Z@Michael Borgwardt: Good question. It looks from <a href="http://java.sun.com/docs/books/jls/first_edition/html/1.1Update.html" rel="nofollow">java.sun.com/docs/books/…</a> as if they put the <code>transient</code> keyword into the first edition of the language but didn't activate it until they added <code>Serializable</code> in 1.1.http://stackoverflow.com/questions/1922897/serializable-and-transientComment by mmyers on Serializable and transientmmyers2009-12-17T16:35:00Z2009-12-17T16:35:00Z@Martinho: It's... kinda like a cow. (I'm quoting "The Song of the Cebu" from VeggieTales, if you're still lost.)http://stackoverflow.com/questions/1922897/serializable-and-transientComment by mmyers on Serializable and transientmmyers2009-12-17T16:27:36Z2009-12-17T16:27:36ZBut I think the question is asking why <code>Serializable</code> feels grafted on to the language. And I think the answer is because it is.http://stackoverflow.com/questions/1922897/serializable-and-transientComment by mmyers on Serializable and transientmmyers2009-12-17T16:26:40Z2009-12-17T16:26:40ZWhy is the sad cebu sad? Is the canoe wood or aluminum?http://stackoverflow.com/questions/1922736/how-to-make-two-word-to-dword/1922752#1922752Comment by mmyers on How to make two WORD to DWORDmmyers2009-12-17T16:02:12Z2009-12-17T16:02:12ZI think you mean to say that <code>short</code> is signed, right?http://stackoverflow.com/questions/1910819/what-kind-of-grammar-do-you-use-for-commentsComment by mmyers on What kind of grammar do you use for comments?mmyers2009-12-15T23:10:41Z2009-12-15T23:10:41ZOpen a manged quetzal?http://stackoverflow.com/questions/1909397/if-an-onfocus-event-handler-is-added-with-attachevent-how-can-i-access-it/1909426#1909426Comment by mmyers on If an onfocus event handler is added with attachEvent, how can I access it?mmyers2009-12-15T18:55:12Z2009-12-15T18:55:12ZI'm not familiar with VBA either, but I searched again and I still can't find anything that would steal focus. I hope this question isn't completely unrelated to the real problem.http://stackoverflow.com/questions/1909397/if-an-onfocus-event-handler-is-added-with-attachevent-how-can-i-access-it/1909427#1909427Comment by mmyers on If an onfocus event handler is added with attachEvent, how can I access it?mmyers2009-12-15T18:35:21Z2009-12-15T18:35:21ZAlso, this is an internal application which is guaranteed to use IE, so that makes it easier.http://stackoverflow.com/questions/1909397/if-an-onfocus-event-handler-is-added-with-attachevent-how-can-i-access-it/1909426#1909426Comment by mmyers on If an onfocus event handler is added with attachEvent, how can I access it?mmyers2009-12-15T18:34:26Z2009-12-15T18:34:26ZI'm just saying that I tried it and it did. Unless I was doing something else that caused it, but I didn't see any other calls to the uppercase <code>Focus</code>.http://stackoverflow.com/questions/1909397/if-an-onfocus-event-handler-is-added-with-attachevent-how-can-i-access-it/1909427#1909427Comment by mmyers on If an onfocus event handler is added with attachEvent, how can I access it?mmyers2009-12-15T18:31:43Z2009-12-15T18:31:43ZNo, but I may be able to do that from VBA. I'll give it a shot now. Thanks!