标签:
1. Socket编程:ServerSocket (int port) :Creates a server socket, bound to the specified port.
Socket(InetAddress address, int port) :Creates a stream socket and connects it to the specified port number at the specified IP address.
2. Java接口知识:接口中的变量默认是public static final 的,方法默认是public abstract 的。
3. 原来Java方法是可以与类同名的,他与构造函数的区别就在于构造函数没有返回值。void也算是返回值类型的一种。
4. final类不能被继承。ClassLoader类是可以被继承的,可以使用自定义的类加载器。
标签:
原文地址:http://www.cnblogs.com/ouyongxin/p/5904330.html