Since 4/16/2012 9:30:17 AM, noone7 has written 6 articles and participated in 3506 conversations. noone7 signature: noone7
noone7's articles:
Items(6) /1
NetBeans 7.0 is out947 (4/22/2011 11:05:04 AM) comp.lang.java.programmer NetBeans 7.0 is out. -- Lew Honi soit qui mal y pense. http://upload.wikimedia.org/wikipedia/commons/c/cf/Friz.jpg ... Lew
JPA in practice738 (8/11/2009 1:50:11 PM) comp.lang.java.programmer JPA (Java Persistence API) makes promises about injection of references and behavior through magic annotations like @Entity and @PersistenceContext. To keep those promises, JPA apps must deploy into containe... Lew
JLS index entries: famous people744 (3/21/2009 6:29:53 PM) comp.lang.java.programmer I've noticed that the JLS index has entries for various famous people and even the Bible, e.g., "biblical quotations", "Burroughs, Edgar Rice", "Chase, Lincoln", "Stein, Gertrude", "Wordsworth, William" and ... Lew
Good news for terseness fans344 (10/28/2008 12:48:06 PM) comp.lang.java.programmer Joshua Bloch said: > ... suppose that HashMap provided this static factory: > > public static HashMap newInstance() { > return new HashMap(); > } > > Then you could replace the wordy declaration [Map> ... Lew
Why we should have closures after all13353 (10/14/2008 1:31:44 AM) comp.lang.java.programmer Flamebait: OK, I was against closures but I am willing to accept them in Java with provisos. I changed my mind because, after all, they are relatively harmless even if they do introduce a certain titillating... Lew
@Override4155 (7/23/2012 6:30:22 PM) comp.lang.java.programmer Is it really necessary to write @Override when you override or is this just "a good thing"?
... bob3904(233)
floating point1444 (7/24/2012 7:57:01 PM) comp.lang.java.programmer I can never remember this.
Let's say you have an integer and a float in an operation. Is the result always a float?
For instance;
int x = 5;
Is x/10.0f definitely a float? Is this true for all ops... bob3904(233)
hashCode #310432 (8/10/2012 3:47:12 PM) comp.lang.java.programmer Is it always technically correct to override the hashCode function like so:
@Override
public int hashCode() {
return 1;
}
Would it be potentially better if that was Object's implementation?
... bob3904(233)
Need help with a program.932 (8/20/2012 9:24:42 AM) comp.lang.java.programmer Why does the function printall() print the base class (c1) member
values? If that is reasonable, what is the method to print the
extended class (cls) values using the base class function printall().
====... venu.yanamandra(5)
Wormholes3340 (9/4/2012 1:12:23 AM) comp.lang.java.programmer I run into this sort of problem fairly often.
I have a method x that calls method y through a long chain of
intermediate calls.
I decide to add a feature. Method x has access to information to
decide i... see_website(4855)