您的位置:首页 > 其它

不利用临时变量,交换两个变量的值

2013-11-08 10:57 106 查看
作者“zyy-jay-163-com”

public class ChangeValue
{

/**
* <不用第三个变量,交换两个变量的值>
*/
public static void main(String[] args)
{
//方法一  精简,一行代码搞定
int x = 3, y = 7, t = 123;
System.out.printf("x = %d, y = %d\n", x, y);
x = y + 0 * (y = x);
System.out.printf("x = %d, y = %d\n", x, y);

//方法二   简单明了
int p = 4, q = 9;
System.out.printf("p = %d, q = %d\n", p, q);
p = p + q; //7
q = p - q; // 7-5=2  q == p
p = p - q; //7-2
System.out.printf("p = %d, q = %d\n", p, q);

//方法三  兼容,支持Integer.MAXVALUE的+操作
int a = 2, b = 5;
System.out.printf("a = %d, b = %d\n", a, b);
a ^= b;
b ^= a;
a ^= b;
System.out.printf("a = %d, b = %d\n", a, b);

//方法四  字符串 数组
String s1 = "111", s2 = "222";
System.out.printf("s1 = %s, s2 = %s\n", s1, s2);
s1 = s1 + "," + s2;
s2 = s1;
s1 = s1.split(",")[1];
s2 = s2.split(",")[0];
System.out.printf("s1 = %s, s2 = %s\n", s1, s2);

//方法五  字符串 表达式(类似方法一)
String str1 = "aaa", str2 = "bbb";
System.out.printf("str1 = %s, str2 = %s\n", str1, str2);
str1 = str2 + ((str2 = str1) == "" ? "" : "");
System.out.printf("str1 = %s, str2 = %s\n", str1, str2);
}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: