| Author |
Random question
|
Isaac Hewitt
Ranch Hand
Joined: Jul 24, 2006
Posts: 179
|
|
I am doing a program where I use a JWindow as sticky notes. I give each note and ID using code like this. When I run some tests I get some of the ID numbers printed with a minus sign preceding the number. I would like to be able to not have a minus sign there. What should I do. Thanks.
|
 |
Garrett Rowe
Ranch Hand
Joined: Jan 17, 2006
Posts: 1295
|
|
The real question is why are you using a random number generator to assign an ID? What happens if you happen to assign the same ID to two different objects. [ July 19, 2008: Message edited by: Garrett Rowe ]
|
Some problems are so complex that you have to be highly intelligent and well informed just to be undecided about them. - Laurence J. Peter
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
I agree with Garrett. A better approach would be to use a static field: Note that I made the method synchronized to make sure that the increase is atomic.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: Random question
|
|
|