Andreas Petersson

3,660
Reputation
552 views

Registered User

Name Andreas Petersson
Member for 1 year
Seen 16 hours ago
Website
http://-
Location Vienna
Age 29
Nov
16
accepted Can anybody tell me why is so?
Nov
14
awarded  Popular Question
Nov
10
comment What is the difference between identity and equality in OOP?
this is wrong metroid. as noted in a different answer by me, the compile can an will not do tricks when allocating objects with "new" operator. only if you create them with Integer.valueof(1) the objects will be pooled.
Nov
9
comment Can anybody tell me why is so?
no, this is wrong. new Integer(1) == new Integer(1) is false regardless of the jvm. AFAIK no compiler will cheat at the "new" keyword. it MUST always instantiate a new object.
Nov
9
comment Why can’t scalac optimize tail recursion in certain scenarios?
note that JVM-level tailcall optimisation is contributed for java 7 see wikis.sun.com/display/mlvm/TailCalls
Nov
9
revised Can anybody tell me why is so?
added 280 characters in body
Nov
9
awarded  Nice Answer
Nov
9
comment Can anybody tell me why is so?
note that values smaller than 127 will be ignored by java and values bigger than Integer.MAX_VALUE-128 will be capped.
Nov
9
answered Can anybody tell me why is so?
Nov
7
comment What is the difference between identity and equality in OOP?
strings are sometimes interned, for example when they are compile-time constants.
Nov
7
revised What is the difference between identity and equality in OOP?
added 16 characters in body; deleted 1 characters in body
Nov
7
accepted What is the difference between identity and equality in OOP?
Nov
7
answered What is the difference between identity and equality in OOP?
Nov
5
accepted Java flag to enable extended Serialization debugging info
Nov
2
comment Java flag to enable extended Serialization debugging info
I need to wait 2 days before i can mark this as accepted, due to SO rules. i found the answer at mfondo.blogspot.com/2007/10/…
Nov
2
comment Java flag to enable extended Serialization debugging info
yes. HttpSession must only contain serializable objects or else it won't persist restart and won't be able to be replicated to other tomcat nodes..
Nov
2
awarded  Self-Learner
Nov
2
revised Java flag to enable extended Serialization debugging info
added 17 characters in body
Nov
2
answered Java flag to enable extended Serialization debugging info
Nov
2
asked Java flag to enable extended Serialization debugging info
Nov
1
revised Grouping objects by date: am I an idiot?
added 13 characters in body
Nov
1
answered Grouping objects by date: am I an idiot?
Nov
1
comment Grouping objects by date: am I an idiot?
private function ? is this java?
Oct
31
comment Strange Java cast exception. Why can’t I cast Long to a Float?
take a look at the source of java.lang.Float (line 404 in 1.6): public static Float valueOf(float f) { return new Float(f); }
Oct
31
revised In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?
added 411 characters in body
Oct
31
answered In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?
Oct
31
comment Strange Java cast exception. Why can’t I cast Long to a Float?
if autoboxing is enabled, Float.valueOf(long.floatValue()) and just long.floatValue() should be equally good.
Oct
31
revised Strange Java cast exception. Why can’t I cast Long to a Float?
added 366 characters in body
Oct
31
comment Strange Java cast exception. Why can’t I cast Long to a Float?
eventually provide the sourcecode around Timeline.java:59 to find a solution.
Oct
31
revised Strange Java cast exception. Why can’t I cast Long to a Float?
added 5 characters in body; added 46 characters in body
Oct
31
answered Strange Java cast exception. Why can’t I cast Long to a Float?
Oct
29
comment What’s the most elegant way to concatenate a list of values with delimiter in Java?
@Thorbjorn: see youtube.com/watch?v=ZeO_J2OcHYM and youtube.com/watch?v=9ni_KEkHfto for an in-depth explanation why you should use G-C. it simplifies a lot of the boilerplate when using almost any complex data structure in java.
Oct
29
comment What’s the most elegant way to concatenate a list of values with delimiter in Java?
once you take a look at the api, you will use ist for much more than just string joining.
Oct
29
answered What’s the most elegant way to concatenate a list of values with delimiter in Java?
Oct
25
comment alternative to if statement in java
if many cases this makes sense. see youtube.com/watch?v=4F72VULWFvc - google tech talks. (The Clean Code Talks -- Inheritance, Polymorphism, & Testing) i consider the downvote wrong.
Oct
25
answered what points i should consider to create API for a new website i am building?
Oct
24
answered Efficient way to compare two strings (ordering of characters irrelevant)
Oct
8
comment shutdown / undeploy tomcat from Servlet
its more about shutting down utility threads and correctly writing logs
Oct
8
asked shutdown / undeploy tomcat from Servlet
Oct
8
comment Is this an example of dependency injection?
hmm not really. service locator is just a fancy factory, NOT a kind if IoC.
Oct
7
accepted Pick up a cache implementation, or roll your own?
Oct
7
awarded  Necromancer
Oct
5
answered O(log N) == O(1) - Why not?
Oct
4
answered Setting up Dev environment for Java development (Q.1)
Oct
4
answered Compound String key in HashMap
Oct
4
answered Java, Object.hashCode() result constant across all JVMs/Systems?
Oct
1
accepted ń ǹ ň ñ ṅ ņ ṇ ṋ ṉ ̈ ɲ ƞ ᶇ ɳ ȵ --> n or Remove diacritical marks from unicode chars
Sep
28
answered How many Scala web-frameworks are there?
Sep
28
comment Need a lightweight web server for Windows XP Home
this is plain wrong. would downvote if poster had reputation.
Sep
21
comment ń ǹ ň ñ ṅ ņ ṇ ṋ ṉ ̈ ɲ ƞ ᶇ ɳ ȵ --> n or Remove diacritical marks from unicode chars
very nice, did not know about that. will try this out.