Java是物件導向的程式語言,它其中包含有各種各樣的名詞,都有不同的意思。
Java中的string是字串的意思,當宣告了一個字串變數時,便可以在裡面儲存資料。
String類別
想要了解一個類,最好的方法就是看這個類別的實作原始碼,來看String類別的原始碼:
public final class String implements java.io.Serializable, Comparable<String>, CharSequence { /** The value is used for character storage. */ private final char value[]; /** The offset is the first index of the storage that is used. */ private final int offset; /** The count is the number of characters in the String. */ private final int count; /** Cache the hash code for the string */ private int hash; // Default to 0 /** use serialVersionUID from JDK 1.0.2 for interoperability */ private static final long serialVersionUID = -6849794470754667710L; ........ }
從上面可以看出幾點:
1)String類別是final類,也即表示String類別不能被繼承,並且它的成員方法都預設為final方法。
在Java中,被final修飾的類別是不允許被繼承的,而該類別中的成員方法都預設為final方法。
2)上面列舉出了String類別中所有的成員屬性,從上面可以看出String類別其實是透過char陣列來保存字串的。
相關學習推薦:java基礎教學
以上是java中string什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!