mfx

2,265
reputation
180 views

Registered User

name mfx
member for 1 year
seen 9 hours ago
website
location Berlin
age 44
java programmer with a C/C++/scheme/SML background
8h
revised How do I compare two Integers?
added 174 characters in body
8h
comment How do I compare two Integers?
But you surely would not use "Integer" instead of "int" if there was was no valid situation where the value is null?
1d
answered Code Commenting: Do you put your code comments on Interfaces or on Concrete classes, or both?
1d
answered How do I compare two Integers?
1d
answered Diversify programming knowledge
2d
answered Help with Vector.size() in Java
Dec
6
awarded  Mortarboard
Dec
3
comment Which characters make a url invalid?
When 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.
Nov
25
answered How to write an enumeration of all computable functions?
Nov
25
answered Should a servlet explicitly return at the end of doGet/doPost?
Nov
20
answered Why aren’t more applications written in multiple languages?
Nov
19
answered Is there a way to improve the speed or efficiency of this lookup? (C/C++)
Nov
19
comment How to check if String value is Boolean type in java?
True, 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).
Nov
19
accepted How to check if String value is Boolean type in java?
Nov
19
answered How to check if String value is Boolean type in java?
Oct
20
answered Why dont languages allow overloading of methods by return value?
Oct
19
answered Optimization! - What is it? How is it done?
Oct
4
answered Searching algorithm
Sep
28
awarded  Critic
Sep
26
revised Is Sun Java Certification worth the expense? Will it help me start a programming career?
corrected spelling
Sep
25
answered How to determine if a String contains invalid encoded characters
Sep
25
revised 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()?
edited body
Sep
22
answered Better to use a list of pairs, or two lists?
Sep
16
awarded  Yearling
Sep
14
answered Inject New Methods and Properties into Classes During Runtime
Sep
9
answered Best Practices: hasXXX() methods for possible null returning getXXX() methods.
Sep
8
answered Java Reflection: Why is it so bad?
Sep
4
answered How can I detect the installed Sun JRE on Windows?
Sep
3
answered How does it know where my value is in memory?
Sep
1
answered How to get adress of a Java Object?
Aug
27
revised Log4j configureAndWatch() spawning thousands of threads
tried to explain better what i meant
Aug
27
answered Log4j configureAndWatch() spawning thousands of threads
Aug
23
comment Stategies for Rebuilding Legacy Applications
thanks for the note, I fixed the name.
Aug
23
revised Stategies for Rebuilding Legacy Applications
fixed author attribution
Aug
22
answered Stategies for Rebuilding Legacy Applications
Aug
21
answered How do I do a union in Java (or how can I get/set individual bits in a float)?
Aug
17
accepted How do I set the resolution when converting dot files (graphviz) to images?
Aug
17
answered How do I set the resolution when converting dot files (graphviz) to images?
Jul
10
revised Killing thread instantly in Java
typo
Jul
9
answered Killing thread instantly in Java
Jul
8
answered Are salts useless for security if the attacker knows them?
Jul
2
answered How can I close my file with the special condition??
Jun
18
answered “Necessary” Uses of Recursion in Imperative Languages
Jun
16
accepted log4j.xml in client jars
Jun
16
awarded  Nice Answer
Jun
16
answered log4j.xml in client jars
Jun
16
answered Java Heap Space (CMS with huge files)
Jun
16
comment Why is Multiple Inheritance not allowed in Java or C#?
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.