192 reputation
8
bio website
location
age
visits member for 1 year, 4 months
seen May 17 at 7:44
stats profile views 31

student electrical engineering


May
7
comment Generating random numbers in a generic class
The cast works as long as the random long is within the expected value range, like byte etc. But if I would just have it cycle for a valid cast, I fear for a very costly id search when casting Long to Byte.
May
7
comment Generating random numbers in a generic class
This is to be included in a much larger generic class that is supposed to return unused random ids to the user no matter what Class has been chosen for I.
May
7
asked Generating random numbers in a generic class
May
3
awarded  Citizen Patrol
Dec
7
accepted Java multiple threads work on one field
Dec
7
comment Java multiple threads work on one field
OK, that is a great solution. It even handles the returns of the other threads correctly, i.e. ignoring them.
Dec
7
comment Java multiple threads work on one field
It doesn't matter, the value written by the workers is always the same for each call.
Dec
7
comment Java multiple threads work on one field
Yes, as soon as one of the threads has it, return the value;
Dec
7
comment Java multiple threads work on one field
Yes, it's a typo, sorry for that. But I am passing a reference of i to the threads.
Dec
7
comment Java multiple threads work on one field
Is that a question or a statement?
Dec
7
asked Java multiple threads work on one field
Nov
22
accepted Java selector.select() blocking thread?
Nov
20
accepted Java undefined generic type
Nov
20
comment Java undefined generic type
Very informative answer, thanks. Actually I'm using both, my classes have other children of AbstractFoo as fields.
Nov
20
comment Java undefined generic type
Because I have multiple classes inheriting from this one by design. Only a few special classes only need 1 parameter.
Nov
20
asked Java undefined generic type
Nov
16
accepted Java NIO Thread selector.select() Nullpointer
Nov
11
comment Java selector.select() blocking thread?
You are right, I should have seen that. I was just convinced that putting the server in non-blocking mode would have the server loop run all the time.
Nov
11
comment Java selector.select() blocking thread?
Meaning, that it blocks as long as I connect a client to it?
Nov
11
asked Java selector.select() blocking thread?