To be a better coder
发布时间:2018-10-31 16:13:01
[root@backup binlog]# vgdisplay --- Volume group --- VG Name centos System ID Format lvm2 M.........【阅读全文】
发布时间:2018-10-30 15:06:15
从一个笔试题看C语言中float向double的提升问题——lvyilong316首先看一段来自一个笔试题的程序段:float f=1.1; double d=1.1; cout<<(f==d)<<endl; //0这段代码输出0,那么为什么同为1.1的doble和float不相等呢?.........【阅读全文】
发布时间:2018-10-30 13:58:40
tcp服务器端fork子进程没有exit引起的问题及原因——lvyilong316在编写tcp服务端使用select时,编写了如下代码:点击(此处)折叠或打开for( ; ; ){ FD_SET(listenfd,&rset); n=select(listenfd+.........【阅读全文】