摘要:
1.安装exvim, 先装macvim,下载fullpages exvim ,在osx级目录执行sh osx/install.sh ,直接代替带哦mvim,sh osx/replace-my-vim.sh 这样在工程目录下touch proj.exvim,可以设置为mvim打开即可。 2.bash去 阅读全文
摘要:
1.char*类型的隐式转化成bool类型void a(bool input){ cout<<"I amd first"<<endl; cout<<input<<endl;}void a(const string &input){ cout<<"I amd second"<<endl; cout<< 阅读全文
摘要:
下面这个位运算小技巧可以迅速给出一个数的二进制表达中末尾有多少个 0 。比如, 123 456 的二进制表达是 1 11100010 01000000 ,因此这个程序给出的结果就是 6 。以下是代码片段:unsigned int v; // find the number of trailing ... 阅读全文
摘要:
CString->std::string 例子:CString strMfc=“test“;std::string strStl;strStl=strMfc.GetBuffer(0);std::string->CString 例子:CString strMfc;std::string strStl... 阅读全文
摘要:
MySQL中有很多的基本命令,show命令也是其中之一,在很多使用者中对show命令的使用还容易产生混淆,本文汇集了show命令的众多用法。 a. show tables或show tables from database_name; -- 显示当前数据库中所有表的名称。 b. show datab 阅读全文
摘要:
MicrosoftVisualStudioUltimate2012旗舰版有效注册密钥: YKCW6-BPFPF-BT8C9-7DCTH-QXGWC1.Visual Studio 2008 Professional Edition:XMQ2Y-4T3V6-XJ48Y-D3K2V-6C4WT2.Visu... 阅读全文
摘要:
//header.h#pragma once#include #include #ifdef WIN32# define GTEST_OS_WINDOWS 1#include #else#include #include #endiftypedef unsigned long int uint32;... 阅读全文
摘要:
From :http://www.cnblogs.com/lancidie/archive/2011/05/18/2050558.html//进行下面步骤前先将table压入栈顶intnIndex=lua_gettop(pLua);//取table索引值lua_pushnil(pLua);//nil... 阅读全文
摘要:
from: http://hi.baidu.com/harite/item/963e9f3f6fe905637d034b6a假如要把如图所示的Excel表格导入到MySql数据库中,如图:,步骤一:选取要导入的数据快儿,另外要多出一列,如下图:步骤二:将选中的数据快儿拷贝到一个新建的表格工作薄,然后... 阅读全文
摘要:
From:http://www.pcworld.com.cn/Article/ShowArticle.asp?ArticleID=12897Windows7中有些特殊目录,例如末尾带“.”的目录,以aux、com1、com2、prn、con、nul等设备名为名的目录等,这些目录因为名称早已被系统占用... 阅读全文