字符和編碼

1.string 可以直接使用 String s1 = "hello"; 內容不可變 String s2 = new String("world");string類一旦創建內容不變。 (1)比較兩個string的內容: String s = "hello"; s.equals("Hello");  false s.equalsIgnoreCase("Hello");   true,無視大小寫  
相關文章
相關標籤/搜索