Java Mask Int zu positiv int abs(int v) { int mask = v >> Integer.SIZE - 1; return v + mask ^ mask; }