你的位置:首页 > 软件开发 > Java > java String部分源码解析

java String部分源码解析

发布时间:2015-07-04 23:00:16
String类型的成员变量/** String的属性值 */ private final char value[]; /** The offset is the first index of the storage that is used. */ /**数组被使用的开始 ...

String类型的成员变量

/** String的属性值 */   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. */  /**String中元素的个数**/  private final int count;  /** Cache the hash code for the string */  /**String类型的hash值**/  private int hash; // Default to 0  /** use serialVersionUID from JDK 1.0.2 for interoperability */  private static final long serialVersionUID = -6849794470754667710L;

 

海外公司注册、海外银行开户、跨境平台代入驻、VAT、EPR等知识和在线办理:https://www.xlkjsw.com

原标题:java String部分源码解析

关键词:JAVA

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。