在线笔记
全部博文(596)
发布时间:2014-12-30 10:34:08
Executable Image Path1. 支持绝对路径,相对路径,2. 支持递归查找3. 支持多个路径,分号(;)分开Symbol Path1. 支持绝对路径,相对路径,2. 支持递归查找3. 支持多个路径,分号(;)分开4. 查找规则For example, if the symbol path includes the c:\MyDir directory, and the debugger is lo.........【阅读全文】
发布时间:2014-12-26 16:31:56
http://www.cnblogs.com/hnrainll/archive/2011/04/24/2026432.html在linux环境下,结构体struct sockaddr在/usr/include/linux/socket.h中定义,具体如下:typedef unsigned short sa_family_t;struct sockaddr { sa_family_t sa_family; &n.........【阅读全文】
发布时间:2014-12-25 13:51:43
//server.c#include<stdio.h>#include<string.h>#include<unistd.h>#include<sys/types.h>#include<stdlib.h>#if 1#include<sys/socket.h>#include<netinet/in.h>#include<arpa/inet.h>#define CLDUDTSO.........【阅读全文】
发布时间:2014-12-11 17:42:32
extends是继承父类,JAVA中不支持多重继承,继承只能继承一个类。只要那个类不是声明为final或者那个类定义为abstract的就能继承,implements实现多重继承,可以实现多个接口,用逗号分开就行了 比如 class A extends B implements C,D,E一个类通过关键字implements声明自己使用一个或者多个接口。在类的声明中.........【阅读全文】