ITPUB??ì3
ITPUB论坛 » Java入门与认证版 » SCPJ学习笔记

新一届的微软MVP评选已经开始,欢迎各位推荐!

标题: [笔记] SCPJ学习笔记
离线 frenchletter
老会员


精华贴数 3
个人空间 0
技术积分 728 (2599)
社区积分 4342 (322)
注册日期 2005-1-6
论坛徽章:4
参与2007年甲骨文全球大会(中国上海)纪念会员2007贡献徽章    
      

发表于 2006-5-17 13:19 
SCPJ学习笔记

计划于今年通过SCPJ1.4,手头有一本Addison Wesley的“A Programmer's Guide to JAVA Certification”,Java板块里有一套破解的“Whizlabs SCJP 1.4 Exam Simulator”。每周看2-3章,后半段做模拟题,OK,可以开始了。


只看该作者    顶部
离线 frenchletter
老会员


精华贴数 3
个人空间 0
技术积分 728 (2599)
社区积分 4342 (322)
注册日期 2005-1-6
论坛徽章:4
参与2007年甲骨文全球大会(中国上海)纪念会员2007贡献徽章    
      

发表于 2006-5-17 15:54 
1 Basics of Java Programming

1 One of the fundamental ways in which we handle complexity is abstractions.

2 An object can have several references, often called its aliases.

3 Objects communicate by message passing.

4 A static variables is initialized when the class is loaded at runtime.

5 Static members in a class can be accessed both by the class name and via object references, but instance members can only be accessed by object references.

6 Objects in Java cannot contain other objects; they can only have references to other objects.


只看该作者    顶部
离线 lang_m
新工作带来新问题


精华贴数 13
个人空间 0
技术积分 8915 (135)
社区积分 3326 (406)
注册日期 2001-11-1
论坛徽章:26
管理团队成员Heart of PUBITPUB新首页上线纪念徽章生肖徽章:羊  
      

发表于 2006-5-17 16:18 
不应该是SCJP么?

这题目? 用我帮你改下么?


__________________
离开喧嚣的人群,繁华的都市,在宁静之中倾听天籁,呼吸.....不管你的工作再忙,也不要忘记你的朋友,他们是你一生的财富 你也许有很多Servlet的问题,看看Servlet Specification 2.4 ,很多东西就迎刃而解一本让你深入了解Java的书Component Development for the Java Platform
只看该作者    顶部
离线 frenchletter
老会员


精华贴数 3
个人空间 0
技术积分 728 (2599)
社区积分 4342 (322)
注册日期 2005-1-6
论坛徽章:4
参与2007年甲骨文全球大会(中国上海)纪念会员2007贡献徽章    
      

发表于 2006-5-17 16:55 


QUOTE:
最初由 lang_m 发布
不应该是SCJP么?

这题目? 用我帮你改下么?


Sun Certified Programmer for Java2(SCPJ2)


只看该作者    顶部
离线 红屁股猩猩
中级会员



精华贴数 0
个人空间 0
技术积分 458 (4242)
社区积分 6 (14305)
注册日期 2005-10-25
论坛徽章:3
ERP板块每日发贴之星开发板块每日发贴之星ERP板块每日发贴之星   
      

发表于 2006-5-17 18:02 
这个是什么东西


只看该作者    顶部
离线 红屁股猩猩
中级会员



精华贴数 0
个人空间 0
技术积分 458 (4242)
社区积分 6 (14305)
注册日期 2005-10-25
论坛徽章:3
ERP板块每日发贴之星开发板块每日发贴之星ERP板块每日发贴之星   
      

发表于 2006-5-17 18:03 
还真是没用过


只看该作者    顶部
离线 lang_m
新工作带来新问题


精华贴数 13
个人空间 0
技术积分 8915 (135)
社区积分 3326 (406)
注册日期 2001-11-1
论坛徽章:26
管理团队成员Heart of PUBITPUB新首页上线纪念徽章生肖徽章:羊  
      

发表于 2006-5-17 19:32 


QUOTE:
最初由 frenchletter 发布

Sun Certified Programmer for Java2(SCPJ2)


…………………………

怎么叫都成


__________________
离开喧嚣的人群,繁华的都市,在宁静之中倾听天籁,呼吸.....不管你的工作再忙,也不要忘记你的朋友,他们是你一生的财富 你也许有很多Servlet的问题,看看Servlet Specification 2.4 ,很多东西就迎刃而解一本让你深入了解Java的书Component Development for the Java Platform
只看该作者    顶部
离线 frenchletter
老会员


精华贴数 3
个人空间 0
技术积分 728 (2599)
社区积分 4342 (322)
注册日期 2005-1-6
论坛徽章:4
参与2007年甲骨文全球大会(中国上海)纪念会员2007贡献徽章    
      

发表于 2006-5-18 16:48 
Basic Language Elements

1 Identifiers: In Java an indentifier is composed of a sequence of characters, where each character can be either a letter, a digit, a connecting punctuation(such as underscore_), or any currency symbol(such as $, ¥). However , the first character in an identifier cannot be a digit.

    Examples of Legal Identifiers: ¥money,你好
  Examples of Illegal Identifiers: 48money, all@hands, grand-sum

2 Keywords: ... assert, default, instanceof, final, finally, native, strictfp, synchronized, throw, throws, transient, volatile...
   Reserved Literals in Java: null, true, false
   Reserved keywords not currently in use: const, goto

3 Primitive Data Types:
boolean

char        8

Integer Types:
byte         8
short        16
int            32         default
long         64

Floating-point Types:
float          32
double       64        default

4 Lifetime fo Variables:
Instance variables: Instance variables exist as long as the object they belong exists.
Static variables: They are created when the class is loaded at runtime, adn exist as long as the class existes.
Local variables: After the excution of the method or block completes, local(non-final) variables are no longer accessible. Local variables need to be initilized.

5 The main method:
final public static void main(String[] args)  throw Exception {}   //It's OK!!


只看该作者    顶部
离线 frenchletter
老会员


精华贴数 3
个人空间 0
技术积分 728 (2599)
社区积分 4342 (322)
注册日期 2005-1-6
论坛徽章:4
参与2007年甲骨文全球大会(中国上海)纪念会员2007贡献徽章    
      

发表于 2006-5-18 17:39 


QUOTE:
最初由 seraphin 发布
如果只是想通过SCJP的话,我个人为:
签名档里的那版《学习指南》不错。书有中文版本的。


嗯,我看那本英文的,顺便提高一下英语,你的模拟题给我留着,就那个模拟器
BTW,不是只想通过这个考试,希望借这个机会把基础打好了。


只看该作者    顶部
相关内容


CopyRight 1999-2006 itpub.net All Right Reserved.
北京皓辰广域网络信息技术有限公司. 版权所有
E-mail:Webmaster@itpub.net
京ICP证:010037号 联系我们 法律顾问