SCJP培训笔记.docVIP

  1. 1、本文档共21页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  5. 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  6. 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  7. 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  8. 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
SCJP培训笔记

  Initialization   初始化   * All class-level (member) variables are initialized before they can   be used.   All local variables are not initialized until it is done explicitly.   * 所有的成员变量在他们使用之前被初始化   所有的局部变量必须通过显式的赋值来初始化   * An array object (as distinct from reference) is always initialized   (with zeroes or s)   * 数组对象总是能够初始化(零或者)   * Member initialization with the declaration has exception problems:   - cannot call methods that throw a checked exception.   - cannot do error recovery from runtime exceptions.   - If you need to deal with errors you can put the initialization code   along with try/catch statements in either a ctor (for instance fields)   or in a static initialization block for static fields. You can also have   instance (non-static) initialization blocks but ctors are more   recognizable.   * 需要处理异常的成员初始化   - 不能调用会抛出异常的方法   - 不能对基本异常做任何处理   - 如果你需要处理错误,将初始化的代码放到构造器或者静态初始化块的   try/catch块中,当然,你也可以放到非静态的代码块中,但是构造器似乎更为通用。   ------------------------------------------------------------------------   Strings   字符串   * The String class   - Because string is an immutable class, its instance methods that   look like they would transform the object they are invoked upon,   do not alter the object and instead return new String objects.   - String has methods concat(String),trim(),replace(char,char)   - String has static valueOf methods for a whole bunch of primitives   and for Object too (equivalent to Object.toString()).   - in substring(int,int), the second arg is exclusive.   - indexOf methods returns -1 for not found   * 类String   - 类String是不可变的,即使他的某些方法看起来会改变字符串的内容,但实际   上他们返回的是一个新的字符串,而不是改变原来的字符串   - 类String的方法:cancat(String),trim(),replace(char,char)   - 类String的静态方法valueOf能处理所有的基本类型和对象(调用对象的   toString()方法)   - 在substring(int,int)方法中,第二个参数是不包括的(译者注:第一个参   数是包括的,例如substring(1,4)将会返回字符串从第二个字符开始(包括   第二个字符),到第五个字符结束(不包括第五个字符)的子字符串)   - 如果没有找到,indexOf方法将返回-1   * String Pool:   A JVM has a string pool where it k

文档评论(0)

panguoxiang + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档