2013年(14)
发布时间:2013-08-01 16:17:13
netbeans在ubuntu下字体看着很不舒服,整一个长条,很不清楚,查了一下,才发现是因为字体有锯齿化,在网上找到了解决办法:找到netbeans设置文件,可以通过命令locate(whereis) netbeans.conf,一般是在/usr/local/netbeans-7.3.1/etc/netbeans.conf修改一下配置:sudo vi /usr/local/netbeans-7.3/etc/netbeans.conf.........【阅读全文】
发布时间:2013-07-16 11:06:01
htons u_short PASCAL FAR htons( u_short hostshort); htons的功能:将一个无符号短整型数值转换为网络字节序,即大端模式(big-endian) 参数:u_short hostshort: 16位无符号整数 返回值:TCP / IP网络字节顺序. htonl &.........【阅读全文】
发布时间:2013-07-15 18:18:35
#include #include #include #include struct stu{ char name[10]; int age;};int main(){&.........【阅读全文】