Unary operator 3.1 x = -y // Unary minus: negates the value of y 3.2 x = ++y // Pre-increment: increments y first, then assigns to x 3.3 x = --y // Pre-decrement: decrements y first, then assigns to x ...
The definitive JNA reference (including an overview and usage details) is in the JavaDoc. Please read the overview. Questions, comments, or exploratory conversations should begin on the mailing list, ...