含蓄芝麻

文章
2
资源
0
加入时间
3年0月21天

js 判断是否为null(非空)

在js里总遇到判断传参是否为空的情况,但是js里面通过obj==null判断好像作用不明显,不过通过“!”判断,事半功倍。做个小计function replace_null(str){ if(!str){  //alert('null');  document.write('0'); }else{  document.write(str); }}...

Linux学习笔记-标准库中的管道操作理论例子

目录 理论例子理论stdio.h里面有标志库管道操作FILE *popen(const char* cmdstring, const char *type);返回值:成功返回文件指针,出错返回NULL; int pclose(FILE *fp);返回值:cmdstring的终止状态,出错返回-1 注意:使用pepen()创建管道必须使用pclose()关闭!...