1. const 关键字 a) const int a; b) int const a; c) const int *a; d) int * const a; e) int const * const a; 解析: a) a为一个int型变量,在它被定义时就应当对其初始化,因为以后就没有机会再去改变它了. b) 与 a) 是一个意思,const 与 int 的位置可以互换. c) const 与 int 修饰的都是 (*a) ,这里的a是一个指向 int 型变量的指针,指针 a…
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接口知识:接口中的变量默认是p…