2017年12月20日

摘要: 在编译uchardet时遇到这个错误: cmake_symlink_library: System Error: Operation not supported 创建链接不成功,要确认当前帐户下是否有权限在编译的目录中有创建链接的权限我使用vmware,在win7机器的共享目录中编译,无法创建链接, 阅读全文
posted @ 2017-12-20 00:34 lydstory 阅读(4000) 评论(0) 推荐(0) 编辑
摘要: 我用git add file添加文件时出现这样错误: fatal: Not a git repository (or any of the parent directories): .git 提示说没有.git这样一个目录,解决办法如下: git init就可以了! 阅读全文
posted @ 2017-12-20 00:20 lydstory 阅读(272) 评论(0) 推荐(0) 编辑

2017年12月19日

摘要: 删除文件夹下的文件 rm CMakeCache.txt 重新编译即可 安装g++ yum install gcc-c++ 阅读全文
posted @ 2017-12-19 23:59 lydstory 阅读(1187) 评论(0) 推荐(0) 编辑

2017年12月13日

摘要: #include <stdio.h>#include <time.h>int main(void){ time_t tick; struct tm tm; char s[100]; tick = time(NULL); tm = *localtime(&tick); strftime(s, size 阅读全文
posted @ 2017-12-13 17:59 lydstory 阅读(197) 评论(0) 推荐(0) 编辑
摘要: afx_msg LRESULT OnMyIconNotify(WPARAM wParam,LPARAM lParam); vc6 可以是void vs2015不可以 ON_MESSAGE(MYWM_NOTIFYICON, CMtextDlg::OnMyIconNotify) 前面必须加类名 阅读全文
posted @ 2017-12-13 16:01 lydstory 阅读(148) 评论(0) 推荐(0) 编辑
摘要: sqr::IDatabase *db=NULL;IDbConnection *conn = NULL;int main(int argc, char* argv[]) { db = GetDatabase(); conn =db->CreateConnection(); conn->execute( 阅读全文
posted @ 2017-12-13 11:12 lydstory 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 线程 和 事件中 变量 not captured 把变量定义为 static 或者添加为全局变量(放在main之前) 阅读全文
posted @ 2017-12-13 11:09 lydstory 阅读(78) 评论(0) 推荐(0) 编辑

2017年12月11日

摘要: #include <stdio.h>#include <stdlib.h>int main(){ char ch = 'a'; int tmp =(int)ch; if( ch == *(char*)&tmp) printf("little end"); else printf("big end") 阅读全文
posted @ 2017-12-11 13:18 lydstory 阅读(76) 评论(0) 推荐(0) 编辑

2017年12月8日

摘要: 选择捕获--》选中本地连接 输入协议端口 例如udp port 909 阅读全文
posted @ 2017-12-08 18:14 lydstory 阅读(63) 评论(0) 推荐(0) 编辑
摘要: mstsc 可以把本地驱动器 挂载到服务器上 阅读全文
posted @ 2017-12-08 17:55 lydstory 阅读(158) 评论(0) 推荐(0) 编辑

导航