iT邦幫忙

2022 iThome 鐵人賽

DAY 29
0
自我挑戰組

自我學習Java系列 第 29

Day29 認識字串物件

  • 分享至 

  • xImage
  •  

https://ithelp.ithome.com.tw/upload/images/20220929/20120940PA3eZQ3QwG.png

    String s1 = new String();

    byte[] b1 = {97.98.99.100};  // ASCII code
    String s2 = new String(b1);

    System.out.println(s1);
    System.out.println(s2);

    String s3 = new String(b1, 1 2);
    System.out.println(s3);

    String s4 = "Hello, Sea";
    System.out.println(s4);

    System.out.println(s2.charAT(2));
    System.out.println("Hello, Sea".charAT(2));
    
    
  }
  
  
}  

跑出:
abcd
bc
Hello, Sea
c
l


上一篇
Day28 自訂類別的格式
下一篇
Day30 這對我來說只是一個開始
系列文
自我學習Java30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言