User mfx - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T15:48:30Zhttp://stackoverflow.com/feeds/user/8015http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1873832/how-do-i-compare-two-integers/1874040#1874040-1Answer by mfx for How do I compare two Integers?mfx2009-12-09T13:52:09Z2009-12-10T18:26:43Z<p>"equals" is it. To be on the safe side, you should test for null-ness:</p>
<pre><code>x == y || (x != null && x.equals(y))
</code></pre>
<p>the x==y tests for null==null, which IMHO should be true.</p>
<p>The code will be inlined by the JIT if it is called often enough, so performance considerations should not matter.</p>
<p>Of course, avoiding "Integer" in favor of plain "int" is the best way, if you can.</p>
<p>[Added]</p>
<p>Also, the null-check is needed to guarantee that the equality test is symmetric -- x.equals(y) should by the same as y.equals(x), but isn't if one of them is null.</p>
http://stackoverflow.com/questions/1875440/code-commenting-do-you-put-your-code-comments-on-interfaces-or-on-concrete-clas/1875623#18756231Answer by mfx for Code Commenting: Do you put your code comments on Interfaces or on Concrete classes, or both?mfx2009-12-09T17:50:01Z2009-12-09T17:50:01Z<p>Ideally, only the interface needs to be documented, since it defines the contract that every concrete implementation needs to fulfill.</p>
http://stackoverflow.com/questions/1873003/diversify-programming-knowledge/1873410#18734101Answer by mfx for Diversify programming knowledgemfx2009-12-09T11:51:40Z2009-12-09T11:51:40Z<p>Ideally, one should know at least one example from each of the major "paradigms":</p>
<ul>
<li>Assembly (nowadays a dying art, and not that useful)</li>
<li>plain C</li>
<li>one of the OO-variants of C (C++, objective C)</li>
<li>Java or C# (they are very similar, probably no need to learn both)</li>
<li>a scripting language like Ruby or Perl</li>
<li>Javascript (preferrably via <a href="http://rads.stackoverflow.com/amzn/click/0596517742" rel="nofollow">Crockford's book</a>)</li>
<li>a non-pure functional language, e.g Scheme (<a href="http://www.plt-scheme.org/" rel="nofollow">PLT Scheme</a> is a nice learning environment)</li>
<li>a pure-functionalal language like Haskell or OCAML</li>
<li>Erlang (somewhat of a class of its own)</li>
<li>a mathematical/statistical language like R, or J (an APL-successor)</li>
</ul>
http://stackoverflow.com/questions/1866145/help-with-vector-size-in-java/1866983#18669830Answer by mfx for Help with Vector.size() in Javamfx2009-12-08T13:29:30Z2009-12-08T13:29:30Z<p>For what do you need the copy constructor Book(Book)? Perhaps you put copies of the books instead of the books itself into your collection?</p>
http://stackoverflow.com/questions/1797457/how-to-write-an-enumeration-of-all-computable-functions/1798436#17984361Answer by mfx for How to write an enumeration of all computable functions?mfx2009-11-25T17:11:29Z2009-11-25T17:11:29Z<p>While it is not too hard to enumerate all possible <em>expressions</em> in some language, you won't be able to restrict these to those expressions that denote <em>terminating functions</em>.</p>
<p>But if you are not interested in termination, using combinators (with some arithmetic primitives thrown in for usefulness) might be the best way, since you avoid introducing variable names that way.</p>
http://stackoverflow.com/questions/1795624/should-a-servlet-explicitly-return-at-the-end-of-doget-dopost/1795683#17956832Answer by mfx for Should a servlet explicitly return at the end of doGet/doPost?mfx2009-11-25T09:22:39Z2009-11-25T09:22:39Z<p>Utterly unnecessary; doesn't add any style points, either.</p>
http://stackoverflow.com/questions/1133265/why-arent-more-applications-written-in-multiple-languages/1771574#17715740Answer by mfx for Why aren't more applications written in multiple languages?mfx2009-11-20T16:17:36Z2009-11-20T16:17:36Z<p>For many classes of applications, there simply is no need for "classic" multi-language projects (involving a high-level language and a low-level language), and the extra complexity cost is significant:</p>
<ul>
<li>your developers must understand all the languages involved</li>
<li>your build system must support them</li>
<li>portability will suffer</li>
<li>bugs will be more obscure</li>
</ul>
<p>OTOH, lots of modern applications already use many different languages, e.g. Java, JSP, XSLT, and Javascript might all be used in the same project.</p>
http://stackoverflow.com/questions/1704165/is-there-a-way-to-improve-the-speed-or-efficiency-of-this-lookup-c-c/1764785#17647851Answer by mfx for Is there a way to improve the speed or efficiency of this lookup? (C/C++)mfx2009-11-19T16:51:34Z2009-11-19T16:51:34Z<p>If all you need is a short string key, converting to base-64 numbers would speed up things a lot, since div/mod 64 is very cheap (shift/mask).</p>
http://stackoverflow.com/questions/1762878/how-to-check-if-string-value-is-boolean-type-in-java/1762994#17629947Answer by mfx for How to check if String value is Boolean type in java?mfx2009-11-19T12:36:15Z2009-11-19T12:36:15Z<ul>
<li>parseBoolean(String) returns true if the String is (case-insensitive) "true", otherwise false</li>
<li>valueOf(String) ditto, returns the canonical Boolean Objects</li>
<li>getBoolean(String) is a red herring; it fetches the System property of the given name and compares that to "true"</li>
</ul>
<p>There exists no method to test whether a String encodes a Boolean; for all practical effects, any non-"true"-String is "false".</p>
http://stackoverflow.com/questions/1596628/why-dont-languages-allow-overloading-of-methods-by-return-value/1596672#15966720Answer by mfx for Why dont languages allow overloading of methods by return value?mfx2009-10-20T19:02:34Z2009-10-20T19:02:34Z<p>Most languages allow for mixed-mode operations with automatic coercion (e.g. float + int), where multiple interpretations are legal. Without coercion, working with multiple numeric types (short, int, long, float, double) would become very cumbersome; with coercion, return-type based disambigation would lead to hard-to-understand code.</p>
http://stackoverflow.com/questions/1587049/optimization-what-is-it-how-is-it-done/1587257#15872571Answer by mfx for Optimization! - What is it? How is it done?mfx2009-10-19T06:43:19Z2009-10-19T06:43:19Z<p><em>Optimizing</em> a program means: <strong>make it run faster</strong></p>
<p>The only way of making the program faster is making it do <strong>less</strong>:</p>
<ul>
<li>find an algorithm that uses fewer operations (e.g. N log N instead of N^2)</li>
<li>avoid slow components of your machine (keep objects in cache instead of in main memory, or in main memory instead of on disk); reducing memory consumption nearly always helps!</li>
</ul>
<p>Further rules:</p>
<ul>
<li>In looking for optimization opportunities, adhere to the 80-20-rule: 20% of typical program code accounts for 80% of execution time. </li>
<li><strong>Measure</strong> the time before and after every attempted optimization; often enough, optimizations don't. </li>
<li>Only optimize after the program runs correctly!</li>
</ul>
<p>Also, there are ways to make a program <em>appear</em> to be faster:</p>
<ul>
<li>separate GUI event processing from back-end tasks; priorize user-visible changes against back-end calculation to keep the front-end "snappy"</li>
<li>give the user something to read while performing long operations (every noticed the slideshows displayed by installers?)</li>
</ul>
http://stackoverflow.com/questions/1516295/searching-algorithm/1516532#15165320Answer by mfx for Searching algorithmmfx2009-10-04T14:24:18Z2009-10-04T14:24:18Z<p>You might optimize you search by observing that your collection's length must be a multiple of your pattern length. If your collection has a size that is prime, the only possible pattern length is 1, i.e. all elements must be identical!</p>
http://stackoverflow.com/questions/990203/is-sun-java-certification-worth-the-expense-will-it-help-me-start-a-programming/990602#9906029Answer by mfx for Is Sun Java Certification worth the expense? Will it help me start a programming career?mfx2009-06-13T12:30:49Z2009-09-26T09:58:52Z<p>I did my SCJP together with a few collegues. Most of us had a few years of java experience.
To pass the exam, you have to learn a lot of the nooks and crannies of the language and the standard libraries (java.lang, java.util, java.io). To me, a lot of the stuff I learned seemed pretty obscure and not directly useful. It took us quite a few months to prepare for the exam, so it is a major undertaking.</p>
<p>The SCJP does <em>not</em> teach you "programming", it doesn't even teach good programming practices. It's only about java-the-language and a few of its libraries.</p>
http://stackoverflow.com/questions/887148/how-to-determine-if-a-string-contains-invalid-encoded-characters/1478199#14781990Answer by mfx for How to determine if a String contains invalid encoded charactersmfx2009-09-25T16:03:52Z2009-09-25T16:03:52Z<p>You might want to include a known parameter in your requests, e.g. "...&encTest=ä€", to safely differentiate between the different encodings.</p>
http://stackoverflow.com/questions/888815/any-there-any-circumstances-where-java-reference-equality-could-be-different-to-e/889003#8890034Answer by mfx for Any there any circumstances where Java reference equality could be different to equals() equality for a an object of a type which has not overridden equals()?mfx2009-05-20T16:37:17Z2009-09-25T07:32:38Z<p>Well, if object0 == null and object1 == null, the first will deliver true, and the second a NullPointerException ;-) Apart from that, there should be no observeable difference.</p>
http://stackoverflow.com/questions/1458793/better-to-use-a-list-of-pairs-or-two-lists/1458901#14589013Answer by mfx for Better to use a list of pairs, or two lists?mfx2009-09-22T08:56:37Z2009-09-22T08:56:37Z<p>The list-of-pairs approach is the obvious thing to do, as it more accurately reflects the intention -- but a Map might be even better, if the IDs are unique.</p>
<p>If you have <em>millions</em> of these pairs, and memory consumption becomes a <em>major</em> consideration, you might want to switch to pairs-of-lists (since there will be one less object per pair).</p>
http://stackoverflow.com/questions/1419758/inject-new-methods-and-properties-into-classes-during-runtime/1420087#14200870Answer by mfx for Inject New Methods and Properties into Classes During Runtimemfx2009-09-14T07:12:47Z2009-09-14T07:12:47Z<p>While it might be possible, it is not useful.</p>
<p><em>How would you access these new fields and methods?</em></p>
<p>You could not use these methods and fields directly (as "ordinary" fields and methods), since they wouldn't be compiled in. </p>
<p>If all you want is the possibility to add "properties" and "methods", you can use a <code>Map<String, Object></code> for the "dynamic properties", and a <code>Map<String, SuitableInterface></code> for the "dynamic methods", and look them up by name.</p>
<p>If you need an extension language for Java, an embedded dynamic language (such as Javascript, or Groovy) can be added; most of these can access arbitrary java objects and methods.</p>
http://stackoverflow.com/questions/1393940/best-practices-hasxxx-methods-for-possible-null-returning-getxxx-methods/1400694#14006940Answer by mfx for Best Practices: hasXXX() methods for possible null returning getXXX() methods.mfx2009-09-09T16:25:15Z2009-09-09T16:25:15Z<p>There are 2 possible reasons for introducing <code>hasXXX()</code>:</p>
<ul>
<li>because <code>hasXXX()</code> communicates its intent better than <code>getXXX() != null</code>, und thus might be considered better readable</li>
<li>because the <code>getXXX()</code> method might be expensive, and sometimes only the boolean <code>hasXXX()</code>-information is needed</li>
</ul>
<p>OTOH, if you usually need the value of <code>getXXX()</code> anyway, <code>hasXXX()</code> is pointless.</p>
http://stackoverflow.com/questions/1392351/java-reflection-why-is-it-so-bad/1392576#13925761Answer by mfx for Java Reflection: Why is it so bad?mfx2009-09-08T07:56:55Z2009-09-08T07:56:55Z<ul>
<li>Reflection was very slow when first introduced, but has been sped up considerably in newer JREs</li>
<li>Still, it might not be a good idea to use reflection in an inner loop</li>
<li>Reflection-based code has low potential for JIT-based optimizations</li>
<li>Reflection is mostly used in connecting loosely-coupled components, i.e. in looking up concrete classes and methods, where only interfaces are known: dependeny-injection frameworks, instantiating JDBC implementation classes or XML parsers. These uses can often be done once at system startup, so the small inefficiency don't matter anyway!</li>
</ul>
http://stackoverflow.com/questions/1339910/how-can-i-detect-the-installed-sun-jre-on-windows/1377916#13779160Answer by mfx for How can I detect the installed Sun JRE on Windows?mfx2009-09-04T08:19:48Z2009-09-04T08:19:48Z<p>There can be any number of installaed JREs and JDKs on a windows machine, but only one will have the HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment set.</p>
<p>You might also consider the "JAVA_HOME" and "Path" environment variables, as they will influence command-line java invocations.</p>
http://stackoverflow.com/questions/1373368/how-does-it-know-where-my-value-is-in-memory/1373464#13734641Answer by mfx for How does it know where my value is in memory?mfx2009-09-03T13:39:30Z2009-09-03T13:39:30Z<p>Reduced to the bare metal, a variable lookup either reduces to an address that is some statically known offset to a base pointer held in a register (the stack pointer), or it is a constant address (global variable).</p>
<p>In an interpreted language, one register if often reserved to hold a pointer to a data structure (the "environment") that associates variable names with their current values.</p>
http://stackoverflow.com/questions/1360826/how-to-get-adress-of-a-java-object/1360954#1360954-2Answer by mfx for How to get adress of a Java Object?mfx2009-09-01T07:05:50Z2009-09-01T07:05:50Z<p>Object.identityHashcode(obj) delivers the next-best thing: a number unique for each object. It corresponds to the default Object.hashCode() implementation.</p>
<p>To quote the API: "As much as is reasonably practical, the hashCode method defined by class Object does return distinct integers for distinct objects. (This is typically implemented by converting the internal address of the object into an integer, but this implementation technique is not required by the JavaTM programming language.)".</p>
http://stackoverflow.com/questions/1337742/log4j-configureandwatch-spawning-thousands-of-threads/1339478#13394780Answer by mfx for Log4j configureAndWatch() spawning thousands of threadsmfx2009-08-27T07:46:02Z2009-08-27T13:02:34Z<p>All Loggers share the same configuration file, so if every class that uses a logger contains this intialization code, each configureAndWatch() call will likely spawn a new watcher thread. (IMHO, Log4j should know better and allow for at most one watcher Thread per configuration file, but apparently it doesn't)</p>
http://stackoverflow.com/questions/1315686/stategies-for-rebuilding-legacy-applications/1315747#13157473Answer by mfx for Stategies for Rebuilding Legacy Applicationsmfx2009-08-22T10:56:14Z2009-08-23T19:51:13Z<p>Michael Feathers: <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working effectively with legacy code</a> presents a number of techniques to work with, and replace, legacy code. I found it quite readable; some of the methods (and many of the hacks) were new to me.</p>
http://stackoverflow.com/questions/1310491/how-do-i-do-a-union-in-java-or-how-can-i-get-set-individual-bits-in-a-float/1310576#13105762Answer by mfx for How do I do a union in Java (or how can I get/set individual bits in a float)?mfx2009-08-21T07:51:21Z2009-08-21T07:51:21Z<p>If you are interested in accessing the bit-level representation of a float, java.lang.Double contains method to do this (doubleToLongBits etc.)</p>
<p>Union'ing between pointer types (or between pointers and their numeric represetantion) would open holes in the type system, so it is strictly impossible.</p>
http://stackoverflow.com/questions/1286813/how-do-i-set-the-resolution-when-converting-dot-files-graphviz-to-images/1286988#12869881Answer by mfx for How do I set the resolution when converting dot files (graphviz) to images?mfx2009-08-17T09:26:16Z2009-08-17T09:26:16Z<p>Try to generate the diagram using a higher resolution, then downsample it.</p>
<p><a href="http://www.umlgraph.org/faq.html" rel="nofollow">http://www.umlgraph.org/faq.html</a></p>
http://stackoverflow.com/questions/1102094/killing-thread-instantly-in-java/1102147#11021472Answer by mfx for Killing thread instantly in Javamfx2009-07-09T06:27:53Z2009-07-10T07:44:09Z<p>There is no portable method. You might try to call "kill -9" (or your local equivalent) on the whole java process, if you want to suppress the running of finalizers and shutdown hooks. </p>
<p>You won't get any kind of repeatable results out of such a test, but it might be interesting to perform such tests a few thousand times if your program is writing to the file system or a database and might leave inconsistent data structures when being killed.</p>
http://stackoverflow.com/questions/1098452/are-salts-useless-for-security-if-the-attacker-knows-them/1098494#10984947Answer by mfx for Are salts useless for security if the attacker knows them?mfx2009-07-08T14:34:41Z2009-07-08T14:34:41Z<p>Salting was introduced (or at least made popular) in UNIX /etc/passwd file, which was world-readable. It is usually assumed that the salt as well as the encrypted password is known to the cracker. The purpose of the salt is the slow-down of the cracking process (since the same password won't map to the same encrypted string); it is <em>not</em> a secret in itself.</p>
http://stackoverflow.com/questions/1072850/how-can-i-close-my-file-with-the-special-condition/1072870#10728700Answer by mfx for How can I close my file with the special condition??mfx2009-07-02T06:53:59Z2009-07-02T06:53:59Z<p>use a finally block:</p>
<pre><code>File f;
try {
f = ....
.. use f ...
} /* optional catches */
finally {
if (f != null) f.close();
}
</code></pre>
http://stackoverflow.com/questions/1011448/necessary-uses-of-recursion-in-imperative-languages/1011613#10116136Answer by mfx for "Necessary" Uses of Recursion in Imperative Languagesmfx2009-06-18T09:04:04Z2009-06-18T16:31:13Z<p>When you are walking any kind of tree structure, for example</p>
<ul>
<li>parsing a grammar using a recursive-descent parser</li>
<li>walking a DOM tree (e.g. parsed HTML or XML)</li>
</ul>
<p>also, every toString() method that calls the toString() of the object members can be considered recursive, too. All object serializing algorithms are recursive.</p>
http://stackoverflow.com/questions/1873832/how-do-i-compare-two-integers/1874040#1874040Comment by mfx on How do I compare two Integers?mfx2009-12-10T18:23:36Z2009-12-10T18:23:36ZBut you surely would not use "Integer" instead of "int" if there was was no valid situation where the value is null?
http://stackoverflow.com/questions/1547899/which-characters-make-a-url-invalidComment by mfx on Which characters make a url invalid?mfx2009-12-03T15:50:00Z2009-12-03T15:50:00ZWhen validating, you should always "think positive": ask for "what is valid", everything else is invalid. Testing against the (few) valid characters is much safer (and easier!) than all possible invalid ones.http://stackoverflow.com/questions/1762878/how-to-check-if-string-value-is-boolean-type-in-java/1762994#1762994Comment by mfx on How to check if String value is Boolean type in java?mfx2009-11-19T13:33:06Z2009-11-19T13:33:06ZTrue, one could imagine a "BooleanFormatException" Exception, in analogy to the NumberFormatException that occurs when you try to parse a non-number String. I suppose it was deemed unnecessary at the time the library was written (1996!), for the targeted environments (embedded systems like set-top boxes and browsers).http://stackoverflow.com/questions/1315686/stategies-for-rebuilding-legacy-applications/1315747#1315747Comment by mfx on Stategies for Rebuilding Legacy Applicationsmfx2009-08-23T19:51:35Z2009-08-23T19:51:35Zthanks for the note, I fixed the name.http://stackoverflow.com/questions/995255/why-is-multiple-inheritance-not-allowed-in-java-or-c/995562#995562Comment by mfx on Why is Multiple Inheritance not allowed in Java or C#?mfx2009-06-16T07:28:51Z2009-06-16T07:28:51ZDynamic languages don't count ;-) In any Lisp-like system, you have a REPL that makes debugging rather easy. Also, CLOS (as i understand it, i have never really used it, only read about it) is a meta-object-system, with a lot of flexibility and a roll-your-own attitude.
But consider a statically compiled language like C++, where the compiler generates some fiendishly complex method lookup using multiple (possibly overlapping) vtables: in such an implementation, finding out what implementation of a method was invoked might be a not-so-trivial task.
http://stackoverflow.com/questions/46586/goto-still-considered-harmful/46590#46590Comment by mfx on GOTO still considered harmful?mfx2009-05-18T22:41:49Z2009-05-18T22:41:49ZPut your nested loop into a separate function and use "return".http://stackoverflow.com/questions/194464/have-you-ever-crashed-the-compiler/194630#194630Comment by mfx on Have you ever crashed the compiler?mfx2009-05-07T10:02:31Z2009-05-07T10:02:31ZHeh, using C++ is cheap ;-) ;-)http://stackoverflow.com/questions/796504/does-it-make-sense-to-use-the-table-tag-on-a-modern-website/796968#796968Comment by mfx on Does it make sense to use the <table> tag on a "modern" website?mfx2009-04-28T12:57:44Z2009-04-28T12:57:44Z"Easiest" depends upon many factors, amongst them your css knowledge and what browsers you program for. I have often implemented a nice-looking layout in css, only to fall back to a table because i couldn't persuade IE6 to display it correclty ;-)
http://stackoverflow.com/questions/771206/how-do-i-cap-my-framerate-at-60-fps-in-java/771218#771218Comment by mfx on How do I cap my framerate at 60 fps in Java?mfx2009-04-21T08:05:42Z2009-04-21T08:05:42ZEasy to understand article.http://stackoverflow.com/questions/312003/what-is-the-most-ridiculous-pessimization-youve-seen/687138#687138Comment by mfx on What is the most ridiculous pessimization you've seen?mfx2009-03-27T16:37:11Z2009-03-27T16:37:11ZIt does happen.
Ca. 10 years ago, I had to support some software that had to change from from Sybase to Oracle. Another project I know of is currently in the process of migrating from Sybase to MySQL.http://stackoverflow.com/questions/553877/basic-sql-question-data-type-choice/553921#553921Comment by mfx on Basic SQL Question - Data Type Choicemfx2009-02-16T18:36:34Z2009-02-16T18:36:34ZAs I understand it, VARCHAR2(1) needs one additional length byte (CHAR(1)) needs that byte, too, if it is nullable, but i assumed a NOT NULL field)http://stackoverflow.com/questions/540155/what-are-the-biggest-design-errors-in-popular-languages-or-libraries/540204#540204Comment by mfx on What are the biggest design errors in popular languages or libraries?mfx2009-02-12T11:40:24Z2009-02-12T11:40:24ZYep, that's a real blunder. Nobody expects hashcode() to potentially block.http://stackoverflow.com/questions/259015/can-every-float-be-expressed-exactly-as-a-double/259514#259514Comment by mfx on Can every float be expressed exactly as a double?mfx2009-01-22T22:19:27Z2009-01-22T22:19:27ZIt enumerates all possible floats by enumerating all ints (which have the same size) and converting their bit patterns to float.http://stackoverflow.com/questions/394574/code-golf-new-year-edition-integer-to-roman-numeral/394598#394598Comment by mfx on Code Golf New Year Edition - Integer to Roman Numeralmfx2008-12-27T07:42:00Z2008-12-27T07:42:00Zusing a build-in in is cheating ;-)http://stackoverflow.com/questions/369383/best-way-for-get-min-and-max-value-from-a-list-of-comparables-in-javaComment by mfx on best way for get min and max value from a list of Comparables in javamfx2008-12-15T19:23:46Z2008-12-15T19:23:46ZThat's inefficient since you need O(n log n) compares, since the TreeSet effectively sorts the Collection, where n compares suffice. Also, you create a lot of unneccessary garbage (Arrays.asList creates a copy of "ts", and the TreeSet is not lightweight, too).