业精于勤,荒于嬉
全部博文(763)
发布时间:2015-01-20 10:24:14
在C语言中,double、long、unsigned、int、char类型数据所占字节数......【阅读全文】
发布时间:2014-06-06 10:14:32
class Boundary { private final Point[] points; // Points making up the boundary ... /** * Return true if the given point is contained inside the boundary. * See: http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html * @param test The point to check .........【阅读全文】
发布时间:2012-12-20 14:17:06
写好C语言,漂亮的宏定义很重要,使用宏定义可以防止出错,提高可移植性,可读性,方便性 等等。下面列举一些成熟软件中常用得宏定义。。。。。。1,防止一个头文件被重复包含#ifndef COMDEF_H#define COMDEF_H //头文件内容#endif2,重新定义一些类型,防止由于各种平台和编译器的不同,而产生的类型字节数差异,方便移植。typedef unsigned char boolean; /* Bo......【阅读全文】