摘要:
场景: 需要批量kill tail 进程。 解决方法: ps -ef | grep IC.IndexServer.log | grep -v grep | awk -F' ' '{print $2}' | xargs kill -9 ps -ef |grep XXX ps 是查看进程命令,-e 显示 阅读全文
摘要:
需求: 查询选休了5门课程的学生的姓名 分析: 1. 先从 t_sc 表中查出 选了5门课的学生的学号: SELECT COUNT(code) AS countCourse,sid FROM t_sc GROUP BY sid HAVING countCourse =5 (使用 group by 子 阅读全文
摘要:
错误场景:一直等待全局锁。 解决方法: 一、首先定义一个封装类,主要是保证PyGILState_Ensure, PyGILState_Release配对使用,而且这个类是可以嵌套使用的。 二、在主线程中,这样处理 三、在主线程,或者子线程中,调用python本身函数的都采用如下处理 阅读全文
摘要:
#include <typeinfo> int iii = 100; printf("%s\n",typeid(iii).name());//类型 详见:http://www.cnblogs.com/SZxiaochun/p/7691574.html 阅读全文
摘要:
#include #include #include using namespace std; enum type{FLASH, ONCE}; string Setstr(const char * val) { return val; } #define enumtoCharArr(val) #val #define enumtoStr(val) Setstr(#val) ... 阅读全文