If it looks like a bug acts like a bug ...
From: Nomen Nescio (nobody_at_dizum.com)
Date: 04/29/04
- Next message: Jeff Schwab: "Re: If it looks like a bug acts like a bug ..."
- Previous message: Julie: "Re: Cracking DES with C++ is faster than Java?"
- Next in thread: Jeff Schwab: "Re: If it looks like a bug acts like a bug ..."
- Reply: Jeff Schwab: "Re: If it looks like a bug acts like a bug ..."
- Reply: Andrew Thompson: "Re: If it looks like a bug acts like a bug ..."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Thu, 29 Apr 2004 17:50:02 +0200 (CEST)
I say its a bug. What do you think?
public class test
public static void main(String args)
int n
Integer I
I = new Integer(0)
for (int i = 0 i < 5 i++)
System.out.println("n = "+I)
n = I.intValue()
I = new Integer(n+1) //increment//
I = new Integer(0)
for (int i = 0 i < 5 i++)
System.out.println("n = "+I)
n = I.intValue()
I = new Integer(n++) //increment//
P.S. Thank you, Raymond DeCampo, for you help with the porxyHost System propery problem.
- Next message: Jeff Schwab: "Re: If it looks like a bug acts like a bug ..."
- Previous message: Julie: "Re: Cracking DES with C++ is faster than Java?"
- Next in thread: Jeff Schwab: "Re: If it looks like a bug acts like a bug ..."
- Reply: Jeff Schwab: "Re: If it looks like a bug acts like a bug ..."
- Reply: Andrew Thompson: "Re: If it looks like a bug acts like a bug ..."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|