java swap_Java中的Swap,如何实现?

程序员都知道,在C/C++里面交换值的方法:

void swap(int &a,int &b)

{

int temp;

temp=a;

a=b;

b=temp;

}

但是在Java中这种方法是行不通的,因为Java对普通类型的变量是不支持引用传递的。

怎么办呢?

1.可以像下面这样通过传数组(也属于传值)的方法来完成交换(很多排序算法就是这样实现)。

public static void swap(int[] data,int a,int b){

int temp=data[a];

data[a]=data[b];

data[b]=temp;

}

package pkg2020华南虎;

/**

*

* @author yl

*/

public class SwapValue {

public static void main(String[] args) {

SwapValue sv = new SwapValue();

int[] num = new int[2];

num[0] = 20;

num[1] = 30;

sv.swap(num, 0, 1);

System.out.println("num1,num2:" + num[0] + "," + num[1]);

}

public static void swap(int[] data, int a, int b) {

int temp = data[a];

data[a] = data[b];

data[b] = temp;

}

}

或者

package pkg2020华南虎;

/**

*

* @author yl

*/

public class SwapValue {

public static void main(String[] args) {

int[] num = new int[2];

num[0] = 20;

num[1] = 30;

swap(num, 0, 1);

System.out.println("num1,num2:" + num[0] + "," + num[1]);

}

public static void swap(int[] data, int a, int b) {

int temp = data[a];

data[a] = data[b];

data[b] = temp;

}

}

注意:数组排序从0开始。

2.也可以通过重新定义个类(在Java中我们可以通过使用int的包装类——integer,然后将其作为值得引用传到函数中,但这个integer包装类也不允许你来改变它的数据域;但这不妨碍我们用自己的包装类,比如说下面实现的MyInteger():

package pkg2020华南虎;

/**

*

* @author yl

*/

//MyInteger:于Integer类似,但是其对象可以变值

class MyInteger {

private int x;//将x作为唯一的数据成员

public MyInteger(int xIn) {

x = xIn;

}//构造器

public int getValue() {

return x;

}//得到值

public void insertValue(int xIn) {

x = xIn;

}//改变值

}

public class SwapValue02 {

static void swap(MyInteger xWrap, MyInteger yWrap) {

int temp = xWrap.getValue();

xWrap.insertValue(yWrap.getValue());

yWrap.insertValue(temp);

}

public static void main(String[] args) {

int a = 23, b = 25;

MyInteger aWrap = new MyInteger(a);

MyInteger bWrap = new MyInteger(b);

swap(aWrap, bWrap);

a = aWrap.getValue();

b = bWrap.getValue();

System.out.println("a,b is: " + a + "," + b);

}

}

3.由于Java中的参数传递都是采用的值传递方式,这不妨碍我们用swap的时候采用外部内联的方式:

package pkg2020华南虎;

/**

*

* @author yl

*/

public class SwapValue03 {

int i, j;

public static void main(String[] args) {

SwapValue03 sv = new SwapValue03(1, 2);

sv.swap();

System.out.println("i,j =" + sv.i + "," + sv.j);

}

public SwapValue03(int i, int j) {//构造方法

this.i = i;

this.j = j;

}

public void swap() {

int temp = i;

i = j;

j = temp;

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值