I'll call a method with two arguments, but i'll use k++ like this:
polygon.addPoint((int)rs.getDouble( k++),(int)rs.getDouble( k++ ));
Actually i want to be sure that jvm executes first argument first, then the second one. If somehow the order will change, arguments would be passed wrong order.
Thanks a lot!