首页 > 代码库 > swap in java?

swap in java?

Is it possible to write a swap method in java? these two variables will be primitives.

It‘s not possible, without any objects or arrays. (Java passes stuff by value.)

 

check here

swap in java?