傑瑞教育7

來源:互聯網
上載者:User

標籤:

2016.08.08

添加斷點,按照debug模式,按F6一步一步向下執行,右側顯示錯誤資訊,尋找錯誤地方。

 

【字串】

雙引號引起來的都是字串。

所有的資料類型都可以轉換成字串。

使用StringObject Storage Service字串:

   String s=”Hello World”;

   String s=new String();

String s=new String(”Hello World”);

 

String s1=”123456”;

String s2=”123456”;

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

輸出結果為:true。原因是:s1在字串常量池中申請了一塊空間,賦值為123456,s2的值也為123456,不會再重新申請空間,因為是引用資料類型String,所以地址相同即為相同,故結果為true。

String s1=new String(“123456”);

String s2=new String(“123456”);

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

輸出結果為:false。原因是:s1和s2都是在字串常量池中申請了一塊空間,都賦值為123456,空間地址不同,所以結果為false。

 

判斷兩個字串是否相等,用equals方法。

 

String類位於java.lang包中,具有豐富的方法(計算字串的長度、比較字串、連接字串、提取字串)。

 

String類提供了length()方法,確定字串的長度。

 

equals方法比較的是字串的內容是否相等。

equals():檢查組成字串內容的字元是否完全一致。

 

區別:

==:兩邊為基礎資料型別 (Elementary Data Type)時,比較的是值是否相同,兩邊是引用資料類型的時候,比較的是空間地址。

equals():比較的是兩邊的內容是否相同。

 

String s1=”abcdefg”;

s1.toUpperCase();

toUpperCase()方法轉回的是轉換成大寫的字串。

toLowerCase()方法轉回的是轉換成小寫字串。

equalsIgnoreCase()方法忽略兩個字串的大小寫。

 

字串的串連

String s3="Hello";

s3=s3.concat("World");

    System.out.println(s3);

concat方法實現字串的拼接。

 

判斷@以及.是否存在於字串中

email.contains(“@”);返回一個boolean類型。

 

public int indexOf(int ch)和public int indexOf(String value)搜尋第一個出現的字元ch(或字串value)。

public int lastIndexOf(int ch)和public int lastIndexOf (String value)搜尋最後一個出現的字元ch(或字串value)。

 

public int substring(int index):提取從位置索引開始的字串部分。

public String substring(int beginIndex,int endIndex):提取beginindex和endindex之間的字串部分。

public String trim():返回一個前後不含任何空格的調用字串的副本(中間可含空格)。

 

String類提供了split()方法,將一個字串分割為子字串,結果作為字串數組返回。

傑瑞教育7

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.