2,971 reputation
516
bio website dolda2000.com/~fredrik
location
age
visits member for 3 years, 10 months
seen 2 days ago
stats profile views 80

Feb
11
comment What is “:-!!” in C code?
It is worth noting that !!e does not evaluate to zero "or a nonzero positive number", but rather to zero or one, specifically. Boolean expressions in C are defined to always evaluate to zero or one.
Feb
11
answered Java: Take the image from Graphics and turn it into a temporary BufferedImage
Feb
11
revised qsort segmentation fault
edited tags
Feb
11
answered How to eliminate the need of JIT when target platform is pre-determined?
Feb
10
accepted Can captures in Java generics be unified in type declarations?
Feb
8
answered How would you implement anonymous authentication?
Feb
8
comment Can captures in Java generics be unified in type declarations?
I'm not saying that the compiler should be smart enough to figure it out for me, but rather wondering if there is any way for me to make it explicit for the compiler that T and Class<T> should be unified. I mean, it can obviously already handle it for the method declarations itself, where type variables can be created explicitly. It would simply be nice to be able to create similar type variables within a single type declaration. I don't think I'm asking for more than that, or am I?
Feb
8
comment Can captures in Java generics be unified in type declarations?
What are you saying would the problem with Map.put? Shouldn't a Map<Class<T>, T> properly gain a function <T> T put(Class<T> key, T value)?
Feb
8
comment Can captures in Java generics be unified in type declarations?
I don't at all intend to make Map special in any way. Given that the type Map<K, V> has a function declared as V get(K key), I think it should be possible to make the compiler understand that a Map<Class<T>, T> has a function T get(Class<T> key), which would achieve the effect I want. The problem, in my case, is that the function effectively becomes X get(Class<Y> key), and I simply want to unify X and Y.
Feb
8
asked Can captures in Java generics be unified in type declarations?
Feb
8
awarded  Nice Answer
Feb
8
answered ALSA (snd_pcm_open) over SSH?
Feb
8
comment search where new item goes inside sorted list
Even if you fix the error properly identified by templatetypedef, you're still going to have the problem that you're using a stack frame per element in the list, so you'll still encounter the problem whenever your list is larger than a few thousand elements. Seeing how the list is, indeed, sorted, you will probably want to implement a binary search instead.
Feb
5
awarded  Organizer
Feb
5
revised How can I start a sub-process in Windows?
edited tags
Feb
5
comment share an instance but create new one for every new process
In that case, you may want to look at my answer to this question.
Feb
5
comment Trying to embed newline in a variable in bash
@abc: That depends on which escape you mean. If you mean the final, echo "$p", it's because the shell would otherwise interpret the newlines as simple parameter separators, pass a, b and c to echo as three different parameters, and echo would then join them with spaces. When you quote $p, its exact contents are passed intact as one single parameter.
Feb
4
answered PHP: exec() - replace process
Feb
4
answered How to scp with a second remote host
Feb
4
answered share an instance but create new one for every new process