码迷,mamicode.com
首页 > 其他好文 > 详细

待解:通过把第6位设置为0使小写字母都变成大写字母

时间:2014-12-18 00:01:52      阅读:462      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   使用   sp   for   div   log   

根据Unicode/ASCII字符集的定义,小写字母与大写字母的区别只是前者比后者整整大32。因此……

 1 class UpCase {
 2     public static void main(String[] args) {
 3         char ch;
 4         
 5         for (int i = 0; i < 10; i++) {
 6             ch = (char) (‘a‘ + i);
 7             System.out.print(ch);
 8             
 9             // This statement turns off the 6th bit.
10             ch = (char) ((int) ch & 65503); // ch is now uppercase
11             
12             System.out.print(ch + " ");
13         }
14     }
15 }

程序输出如下所示:

aA bB cC dD eE fF gG hH iI jJ 

 

&语句中使用的值65 503表示二进制中的1111 1111 1101 1111。因此,按位与操作就只会让ch中的第6位设置0,而其他所有位都不变。

待解:通过把第6位设置为0使小写字母都变成大写字母

标签:style   blog   ar   color   使用   sp   for   div   log   

原文地址:http://www.cnblogs.com/fatoland/p/4170706.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!