原來String是這樣的(下)

前言

回顧

我們講到了String的equals和==的區(qū)別:

equals根據(jù)你編寫的方法體來進行比較,而==是根據(jù)比較的引用地址是否相同來比較的湃密。

主題

今天我們來講講String類的其他.方法在源碼中的解讀.

例子

publicclassTest{

publicstaticvoidmain(String[] args){

String a1=newString("abc");

String a2=newString("abc");

System.out.println(a1.isEmpty());

System.out.println(a1.length());

System.out.println(a1.charAt(1);

System.out.println(a1.substring(2,3));

}

}

String的幾個方法

這里我們介紹了String的幾個簡單的方法私沮。

.isEmpty();

.length();

.charAt();

.subString();

我們查看源碼就可以知道:String方法的幾個構(gòu)造器

.isEmpty();

/**

* Returns {@codetrue} if, and only if, {@link#length()} is {@code0}.

*

*@return{@codetrue} if {@link#length()} is {@code0}, otherwise

* {@codefalse}

*

*@since1.6

*/

publicbooleanisEmpty(){

returnvalue.length ==0;

}

isEmpty直接判斷傳進來的值長度是否為0

.length();

/**

* Returns the length of this string.

* The length is equal to the number of Unicode

* code units in the string.

*

*@returnthe length of the sequence of characters represented by this

*? ? ? ? ? object.

*/

publicintlength(){

returnvalue.length;

}

返回字符串的長度

.charAt();

/**

* Returns the {@codechar} value at the

* specified index. An index ranges from {@code0} to

* {@codelength() - 1}. The first {@codechar} value of the sequence

* is at index {@code0}, the next at index {@code1},

* and so on, as for array indexing.

*

*

If the {@codechar} value specified by the index is a

* surrogate, the surrogate

* value is returned.

*

*@paramindex? the index of the {@codechar} value.

*@returnthe {@codechar} value at the specified index of this string.

*? ? ? ? ? ? The first {@codechar} value is at index {@code0}.

*@exceptionIndexOutOfBoundsException? if the {@codeindex}

*? ? ? ? ? ? argument is negative or not less than the length of this

*? ? ? ? ? ? string.

*/

publiccharcharAt(intindex){

if((index <0) || (index >= value.length)) {

thrownewStringIndexOutOfBoundsException(index);

}

returnvalue[index];

}

charAt這里我們可以看到三娩,類型為char携添,定義了一個下標(biāo)

如果下標(biāo)index<0或者>=字符的長度拋出StringIndexOutOfBoundsException

否則返回value[index] 這里我們返回的就是vlaue[1] 答案為b

.subString();

**

* Returns a string that is a substring of this string. The

* substring begins at the specified {@code beginIndex} and

* extends to the character at index {@code endIndex - 1}.

* Thus the length of the substring is {@code endIndex-beginIndex}.

*

* Examples:

*

* "hamburger".substring(4, 8) returns "urge"

* "smiles".substring(1, 5) returns "mile"

*

*

* @param? ? ? beginIndex? the beginning index, inclusive.

* @param? ? ? endIndex? ? the ending index, exclusive.

* @return? ? the specified substring.

* @exception? IndexOutOfBoundsException? if the

*? ? ? ? ? ? {@code beginIndex} is negative, or

*? ? ? ? ? ? {@code endIndex} is larger than the length of

*? ? ? ? ? ? this {@code String} object, or

*? ? ? ? ? ? {@code beginIndex} is larger than

*? ? ? ? ? ? {@code endIndex}.

*/

public String substring(int beginIndex, int endIndex) {

if (beginIndex < 0) {

throw new StringIndexOutOfBoundsException(beginIndex);

}

if (endIndex > value.length) {

throw new StringIndexOutOfBoundsException(endIndex);

}

int subLen = endIndex - beginIndex;

if (subLen < 0) {

throw new StringIndexOutOfBoundsException(subLen);

}

return ((beginIndex == 0) && (endIndex == value.length)) ? this

: new String(value, beginIndex, subLen);

}

subString方法有兩個參數(shù)巩梢,一個起始指標(biāo),一個結(jié)束指標(biāo)

判斷beginIndex < 0拋出StringIndexOutOfBoundsException,同樣的結(jié)束index大于長度拋出StringIndexOutOfBoundsException

然后定義一個sbuLen知染,為endIndex - beginIndex,判斷subLen小于0拋出StringIndexOutOfBoundsException

返回如果(beginIndex == 0) && (endIndex == value.length)返回對象本身,否則該數(shù)組和beginIndex斑胜、subLen`構(gòu)成新的對象返回

這里講的就是String基本的幾個方法控淡。這里還有一個小彩蛋就是&和&&的區(qū)別

大家可以回憶一下.

&:方法無論前值是否為true,都要判斷后面的邏輯表達(dá)式

&&:會形成短路,前面為false的時候就不執(zhí)行后面邏輯

結(jié)尾附上String的基本方法:

/**

* Initializes a newly created {@codeString} object so that it represents

* an empty character sequence.? Note that use of this constructor is

* unnecessary since Strings are immutable.

*/

publicString(){

this.value ="".value;

}

/**

* Initializes a newly created {@codeString} object so that it represents

* the same sequence of characters as the argument; in other words, the

* newly created string is a copy of the argument string. Unless an

* explicit copy of {@codeoriginal} is needed, use of this constructor is

* unnecessary since Strings are immutable.

*

*@paramoriginal

*? ? ? ? A {@codeString}

*/

publicString(String original){

this.value = original.value;

this.hash = original.hash;

}

這就是String構(gòu)成其實是一個數(shù)組止潘,有value和hash兩個屬性掺炭,大家可以多多理解和想象一下.

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市凭戴,隨后出現(xiàn)的幾起案子涧狮,更是在濱河造成了極大的恐慌,老刑警劉巖么夫,帶你破解...
    沈念sama閱讀 211,194評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件者冤,死亡現(xiàn)場離奇詭異,居然都是意外死亡档痪,警方通過查閱死者的電腦和手機涉枫,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來腐螟,“玉大人愿汰,你說我怎么就攤上這事±种剑” “怎么了衬廷?”我有些...
    開封第一講書人閱讀 156,780評論 0 346
  • 文/不壞的土叔 我叫張陵,是天一觀的道長汽绢。 經(jīng)常有香客問我吗跋,道長,這世上最難降的妖魔是什么庶喜? 我笑而不...
    開封第一講書人閱讀 56,388評論 1 283
  • 正文 為了忘掉前任小腊,我火速辦了婚禮救鲤,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘秩冈。我一直安慰自己本缠,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,430評論 5 384
  • 文/花漫 我一把揭開白布入问。 她就那樣靜靜地躺著丹锹,像睡著了一般。 火紅的嫁衣襯著肌膚如雪芬失。 梳的紋絲不亂的頭發(fā)上楣黍,一...
    開封第一講書人閱讀 49,764評論 1 290
  • 那天,我揣著相機與錄音棱烂,去河邊找鬼租漂。 笑死,一個胖子當(dāng)著我的面吹牛颊糜,可吹牛的內(nèi)容都是我干的哩治。 我是一名探鬼主播,決...
    沈念sama閱讀 38,907評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼衬鱼,長吁一口氣:“原來是場噩夢啊……” “哼业筏!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起鸟赫,我...
    開封第一講書人閱讀 37,679評論 0 266
  • 序言:老撾萬榮一對情侶失蹤蒜胖,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后抛蚤,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體台谢,經(jīng)...
    沈念sama閱讀 44,122評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,459評論 2 325
  • 正文 我和宋清朗相戀三年霉颠,在試婚紗的時候發(fā)現(xiàn)自己被綠了对碌。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,605評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡蒿偎,死狀恐怖朽们,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情诉位,我是刑警寧澤骑脱,帶...
    沈念sama閱讀 34,270評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站苍糠,受9級特大地震影響叁丧,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,867評論 3 312
  • 文/蒙蒙 一拥娄、第九天 我趴在偏房一處隱蔽的房頂上張望蚊锹。 院中可真熱鬧,春花似錦稚瘾、人聲如沸牡昆。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽丢烘。三九已至,卻和暖如春些椒,著一層夾襖步出監(jiān)牢的瞬間播瞳,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評論 1 265
  • 我被黑心中介騙來泰國打工免糕, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留赢乓,地道東北人。 一個月前我還...
    沈念sama閱讀 46,297評論 2 360
  • 正文 我出身青樓说墨,卻偏偏與公主長得像骏全,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子尼斧,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,472評論 2 348

推薦閱讀更多精彩內(nèi)容