网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > Java
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
网络编程:ASP教程,ASP.NET教程,PHP教程,JSP教程,C#教程,数据库,XML教程,Ajax,Java,Perl,Shell,VB教程,Delphi,C/C++教程,软件工程,J2EE/J2ME,移动开发
本月文章推荐
.Java线程的讨论与应用.
.JAVA基础知识(3).
.JAAS:灵活的Java安全机制.
.Java入门:java中几个关于类的名.
.JSF与WEB完美应用组合 高度提升开.
.Struts开发指南之J2EE n层结构.
.深入探讨Iterator模式.
.深入浅出Java设计模式之迭代器模.
.条件编译变量.
.通过Struts应用MVC设计模型.
.Java 理论与实践: 用动态代理进行.
.JSF 中使用自定义 Nav.
.理解Subjects, Principals and .
.JAVA中用接口实现多继承和多态的.
.Javascript实例教程(20) OLE Aut.
.分布式Observer模式最佳实践.
.Ant与Eclipse集成解析(1).
.表单递交合法性检测 - 只接受数字.
.浅谈MDA技术未来发展方向.
.Java有能力抵挡LAMP的进攻吗?.

scjp1.4于八月十九上马

发表日期:2008-1-5



  Sun Certified Programmer for the Java 2 Platform 1.4 (310-035) - Exam will be available in August 19, 2002.
  
  Objectives are available (The new exam version does not include I/O or AWT).
  
  SUN CERTIFIED PROGRAMMER FOR JAVA[tm] 2 PLATFORM 1.4
  Exam Available August 19, 2002
  SECTION 1: DECLARATIONS AND Access CONTROL
  
  Write code that declares, constrUCts and initializes arrays of any base type using any of the permitted forms both for declaration and for initialization.
  Declare classes, nested classes, methods, instance variables, static variables and automatic (method local) variables making appropriate use of all permitted modifiers (such as public, final, static, abstract, etc.). State the significance of each of these modifiers both singly and in combination and state the effect of package relationships on declared items qualified by these modifiers.
  For a given class, determine if a default constructor will be created and if so state the prototype of that constructor.
  Identify legal return types for any method given the declarations of all related methods in this or parent classes.
  SECTION 2: FLOW CONTROL, ASSERTIONS, AND EXCEPTION HANDLING
  
  Write code using if and switch statements and identify legal argument types for these statements.
  Write code using all forms of loops including labeled and unlabeled, use of break and continue, and state the values taken by loop counter variables during and after loop execution.
  Write code that makes proper use of exceptions and exception handling clauses (try, catch, finally) and declares methods and overriding methods that throw exceptions.
  Recognize the effect of an exception arising at a specified point in a code fragment. Note: The exception may be a runtime exception, a checked exception, or an error (the code may include try, catch, or finally clauses in any legitimate combination).
  Write code that makes proper use of assertions, and distinguish appropriate from inappropriate uses of assertions.
  Identify correct statements about the assertion mechanism.
  SECTION 3: GARBAGE COLLECTION
  
  State the behavior that is guaranteed by the garbage collection system.
  Write code that eXPlicitly makes objects eligible for garbage collection.
  Recognize the point in a piece of source code at which an object becomes eligible for garbage collection.
  SECTION 4: LANGUAGE FUNDAMENTALS
  
  Identify correctly constructed package declarations, import statements, class declarations (of all forms including inner classes) interface declarations, method declarations (including the main method that is used to start execution of a class), variable declarations, and identifiers.
  Identify classes that correctly implement an interface where that interface is either java.lang.Runnable or a fully specified interface in the question.
  State the correspondence between index values in the argument array passed to a main method and command line arguments.
  Identify all Java programming language keyWords. Note: There will not be any questions regarding esoteric distinctions between keywords and manifest constants.
  State the effect of using a variable or array element of any kind when no explicit assignment has been made to it.
  State the range of all primitive formats, data types and declare literal values for String and all primitive types using all permitted formats bases and representations.
  SECTION 5: OPERATORS AND ASSIGNMENTS
  
  Determine the result of applying any operator (including assignment operators and instance of) to operands of any type class scope or accessibility or any combination of these.
  Determine the result of applying the boolean equals (Object) method to objects of any combination of the classes java.lang.String, java.lang.Boolean and java.lang.Object.
  In an expression involving the operators &, , &&, and variables of known values state which operands are evaluated and the value of the expression.
  Determine the effect upon objects and primitive values of passing variables into methods and performing assignments or other modifying operations in that method.
  SECTION 6: OVERLOADING, OVERRIDING, RUNTIME TYPE AND OBJECT ORIENTATION
  
  State the benefits of encapsulation in object oriented design and write code that implements tightly encapsulated classes and the relationships "is a" and "has a".
  Write code to invoke overridden or overloaded methods and parental or overloaded constructors; and describe the effect of invoking these methods.
  Write code to construct instances of any concrete class including normal top level classes and nested classes.
  SECTION 7: THREADS
  
  Write code to define, instantiate and start new threads using both java.lang.Thread and java.lang.Runnable.
  Recognize conditions that might prevent a thread from executing.
  Write code using synchronized wait, notify and notifyAll to protect against concurrent access problems and to communicate between threads.
  Define the interaction among threads and object locks when executing synchronized wait, notify or notifyAll.
  SECTION 8: FUNDAMENTAL CLASSES IN THE JAVA.LANG PACKAGE
  
  Write code using the following methods of the java.lang.Math class: abs, ceil, floor, max, min, random, round, sin, cos, tan, sqrt.
  Describe the significance of the immutability of String objects.
  Describe the significance of wrapper classes, including making appropriate selections in the wrapper classes to suit specified behavior requirements, stating the result of executing a fragment of code that includes an instance of one of the wrapper classes, and writing code using the following methods of the wrapper classes (e.g., Integer, Double, etc.):
  doubleValue
  floatValue
  intValue
  longValue
  parseXxx
  getXxx
  toString
  toHexString
  SECTION 9: THE COLLECTIONS FRAMEWORK
  
  Make appropriate selection of collection classes/interfaces to suit specified behavior requirements.
  Distinguish between correct and incorrect implementations of hashcode methods.
上一篇:课程介绍(13): SL-291 JavaBeans 组件的开发 人气:744
下一篇:课程介绍(11): SL-351 Java数据库应用程序 人气:405
浏览全部Java的内容 Dreamweaver插件下载 网页广告代码 祝你圣诞节快乐 2009年新年快乐