Java
文章平均质量分 93
gentleboy2009
这个作者很懒,什么都没留下…
展开
-
Java网络编程之Socket
URLs and URLConnections provide a relatively high-level mechanism for accessing resources on the Internet. Sometimes your programs require l转载 2011-07-24 21:19:48 · 2474 阅读 · 0 评论 -
Java网络编程之URL
Lesson: Working with URLsURL is the acronym for Uniform Resource Locator. It is a reference (an address) to a resource on the Internet. You原创 2011-07-24 21:23:02 · 1392 阅读 · 0 评论 -
Java网络编程之基础
What You May Already Know About Networking in JavaThe word networking strikes fear in the hearts of many programmers. Fear not! Using the ne原创 2011-07-24 21:28:11 · 520 阅读 · 0 评论 -
Java网络编程之Datagrams
Lesson: All About DatagramsSome applications that you write to communicate over the network will not require the reliable, point-to-point ch原创 2011-07-24 21:30:15 · 1067 阅读 · 1 评论 -
Java-API学习笔记---Integer
首先来看Integer类的继承关系,该类继承自Java中的Number类,Number类又继承自Java中的顶层类Object。Java源码中对该类的注释如下: * The Integer class wraps a value of the primitive type * int in an object. An object of type * Integer contain原创 2012-04-29 22:41:15 · 3059 阅读 · 0 评论 -
Java-API学习笔记---Object
Object是Java中类继承关系中的Root Class。打开JDK自带的源码,我们发现Object中总共有9个方法。其中有6个是native方法,没什么好说的,后面会有专门的章节来讲解native方法。思来想去,既然没有源码,那么理解Object类就先从源码中的注释开始吧:public final Class getClass()返回此 Object 的运行时类。返回的 C原创 2012-04-30 20:59:17 · 638 阅读 · 0 评论