把字符串转换成字符数组 ,比较数组[0]的大小就可以了 char可以隐式转换成int 直接比就可以了
交换两个字符串:String s1="s1";String s2="s2";String tmp;tmp=s1;s1=s2;s2=tmp; s1 和 s2 交换了。