char 如何二進制....

2007-03-21 6:09 pm
In Java....

我想將一個char 'z' 轉做二進制FORMAT...
應該點做....???

THANKS

回答 (2)

2007-03-21 6:23 pm
✔ 最佳答案
閣下可以直接cast如:
char thisChar = 'z';
(int) thisChar便可以獲得'z'的ASCII碼.
2007-03-21 7:01 pm
如果你係想用ASCII 黎轉就先cast 左佢做integer 跟住用 Integer class 入面個 toBinaryString method 黎轉.

System.out.println( Integer.toBinaryString( ( int ) 'z' ) );


收錄日期: 2021-04-13 15:56:59
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20070321000051KK00674

檢視 Wayback Machine 備份