本帖最後由 tonyh 於 2024-2-1 16:51 編輯
- public class Test {
- public static void main(String[] args) {
- String str="108";
- System.out.println(str+1);
- int a=Integer.valueOf(str); //字串轉整數
- System.out.println(a+1);
- String b=Integer.toBinaryString(a); //整數轉二進制字串
- System.out.println(b);
- System.out.printf("%08d\n", Integer.valueOf(b)); //調整為固定8位元寬度
- int c=Integer.valueOf(b, 2); //二進制字串轉整數
- System.out.println(c);
- }
- }
複製代碼 |