User mfx - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T15:48:30Z http://stackoverflow.com/feeds/user/8015 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1873832/how-do-i-compare-two-integers/1874040#1874040 -1 Answer by mfx for How do I compare two Integers? mfx 2009-12-09T13:52:09Z 2009-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 &amp;&amp; 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#1875623 1 Answer by mfx for Code Commenting: Do you put your code comments on Interfaces or on Concrete classes, or both? mfx 2009-12-09T17:50:01Z 2009-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#1873410 1 Answer by mfx for Diversify programming knowledge mfx 2009-12-09T11:51:40Z 2009-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#1866983 0 Answer by mfx for Help with Vector.size() in Java mfx 2009-12-08T13:29:30Z 2009-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#1798436 1 Answer by mfx for How to write an enumeration of all computable functions? mfx 2009-11-25T17:11:29Z 2009-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#1795683 2 Answer by mfx for Should a servlet explicitly return at the end of doGet/doPost? mfx 2009-11-25T09:22:39Z 2009-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#1771574 0 Answer by mfx for Why aren't more applications written in multiple languages? mfx 2009-11-20T16:17:36Z 2009-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#1764785 1 Answer by mfx for Is there a way to improve the speed or efficiency of this lookup? (C/C++) mfx 2009-11-19T16:51:34Z 2009-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#1762994 7 Answer by mfx for How to check if String value is Boolean type in java? mfx 2009-11-19T12:36:15Z 2009-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#1596672 0 Answer by mfx for Why dont languages allow overloading of methods by return value? mfx 2009-10-20T19:02:34Z 2009-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#1587257 1 Answer by mfx for Optimization! - What is it? How is it done? mfx 2009-10-19T06:43:19Z 2009-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#1516532 0 Answer by mfx for Searching algorithm mfx 2009-10-04T14:24:18Z 2009-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#990602 9 Answer by mfx for Is Sun Java Certification worth the expense? Will it help me start a programming career? mfx 2009-06-13T12:30:49Z 2009-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#1478199 0 Answer by mfx for How to determine if a String contains invalid encoded characters mfx 2009-09-25T16:03:52Z 2009-09-25T16:03:52Z <p>You might want to include a known parameter in your requests, e.g. "...&amp;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#889003 4 Answer 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()? mfx 2009-05-20T16:37:17Z 2009-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#1458901 3 Answer by mfx for Better to use a list of pairs, or two lists? mfx 2009-09-22T08:56:37Z 2009-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#1420087 0 Answer by mfx for Inject New Methods and Properties into Classes During Runtime mfx 2009-09-14T07:12:47Z 2009-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&lt;String, Object&gt;</code> for the "dynamic properties", and a <code>Map&lt;String, SuitableInterface&gt;</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#1400694 0 Answer by mfx for Best Practices: hasXXX() methods for possible null returning getXXX() methods. mfx 2009-09-09T16:25:15Z 2009-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#1392576 1 Answer by mfx for Java Reflection: Why is it so bad? mfx 2009-09-08T07:56:55Z 2009-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#1377916 0 Answer by mfx for How can I detect the installed Sun JRE on Windows? mfx 2009-09-04T08:19:48Z 2009-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#1373464 1 Answer by mfx for How does it know where my value is in memory? mfx 2009-09-03T13:39:30Z 2009-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 -2 Answer by mfx for How to get adress of a Java Object? mfx 2009-09-01T07:05:50Z 2009-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#1339478 0 Answer by mfx for Log4j configureAndWatch() spawning thousands of threads mfx 2009-08-27T07:46:02Z 2009-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#1315747 3 Answer by mfx for Stategies for Rebuilding Legacy Applications mfx 2009-08-22T10:56:14Z 2009-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#1310576 2 Answer by mfx for How do I do a union in Java (or how can I get/set individual bits in a float)? mfx 2009-08-21T07:51:21Z 2009-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#1286988 1 Answer by mfx for How do I set the resolution when converting dot files (graphviz) to images? mfx 2009-08-17T09:26:16Z 2009-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#1102147 2 Answer by mfx for Killing thread instantly in Java mfx 2009-07-09T06:27:53Z 2009-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#1098494 7 Answer by mfx for Are salts useless for security if the attacker knows them? mfx 2009-07-08T14:34:41Z 2009-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#1072870 0 Answer by mfx for How can I close my file with the special condition?? mfx 2009-07-02T06:53:59Z 2009-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#1011613 6 Answer by mfx for "Necessary" Uses of Recursion in Imperative Languages mfx 2009-06-18T09:04:04Z 2009-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#1874040 Comment by mfx on How do I compare two Integers? mfx 2009-12-10T18:23:36Z 2009-12-10T18:23:36Z But you surely would not use &quot;Integer&quot; instead of &quot;int&quot; if there was was no valid situation where the value is null? http://stackoverflow.com/questions/1547899/which-characters-make-a-url-invalid Comment by mfx on Which characters make a url invalid? mfx 2009-12-03T15:50:00Z 2009-12-03T15:50:00Z When validating, you should always &quot;think positive&quot;: ask for &quot;what is valid&quot;, 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#1762994 Comment by mfx on How to check if String value is Boolean type in java? mfx 2009-11-19T13:33:06Z 2009-11-19T13:33:06Z True, one could imagine a &quot;BooleanFormatException&quot; 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#1315747 Comment by mfx on Stategies for Rebuilding Legacy Applications mfx 2009-08-23T19:51:35Z 2009-08-23T19:51:35Z thanks for the note, I fixed the name. http://stackoverflow.com/questions/995255/why-is-multiple-inheritance-not-allowed-in-java-or-c/995562#995562 Comment by mfx on Why is Multiple Inheritance not allowed in Java or C#? mfx 2009-06-16T07:28:51Z 2009-06-16T07:28:51Z Dynamic 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#46590 Comment by mfx on GOTO still considered harmful? mfx 2009-05-18T22:41:49Z 2009-05-18T22:41:49Z Put your nested loop into a separate function and use &quot;return&quot;. http://stackoverflow.com/questions/194464/have-you-ever-crashed-the-compiler/194630#194630 Comment by mfx on Have you ever crashed the compiler? mfx 2009-05-07T10:02:31Z 2009-05-07T10:02:31Z Heh, using C++ is cheap ;-) ;-) http://stackoverflow.com/questions/796504/does-it-make-sense-to-use-the-table-tag-on-a-modern-website/796968#796968 Comment by mfx on Does it make sense to use the <table> tag on a "modern" website? mfx 2009-04-28T12:57:44Z 2009-04-28T12:57:44Z &quot;Easiest&quot; 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#771218 Comment by mfx on How do I cap my framerate at 60 fps in Java? mfx 2009-04-21T08:05:42Z 2009-04-21T08:05:42Z Easy to understand article. http://stackoverflow.com/questions/312003/what-is-the-most-ridiculous-pessimization-youve-seen/687138#687138 Comment by mfx on What is the most ridiculous pessimization you've seen? mfx 2009-03-27T16:37:11Z 2009-03-27T16:37:11Z It 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#553921 Comment by mfx on Basic SQL Question - Data Type Choice mfx 2009-02-16T18:36:34Z 2009-02-16T18:36:34Z As 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#540204 Comment by mfx on What are the biggest design errors in popular languages or libraries? mfx 2009-02-12T11:40:24Z 2009-02-12T11:40:24Z Yep, 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#259514 Comment by mfx on Can every float be expressed exactly as a double? mfx 2009-01-22T22:19:27Z 2009-01-22T22:19:27Z It 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#394598 Comment by mfx on Code Golf New Year Edition - Integer to Roman Numeral mfx 2008-12-27T07:42:00Z 2008-12-27T07:42:00Z using 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-java Comment by mfx on best way for get min and max value from a list of Comparables in java mfx 2008-12-15T19:23:46Z 2008-12-15T19:23:46Z That'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 &quot;ts&quot;, and the TreeSet is not lightweight, too).