- 博客(8)
- 收藏
- 关注
转载 sqlite3
iphone sqlite的调用过程 2011-09-19 15:30:08| 分类: 默认分类 |字号 订阅简要说明一下SQLite数据库执行SQL语句的过程** 调用sqlite3_prepare()将SQL语句编译为sqlite内部一个结构体(sqlite3_stmt).该结构体中包含了将要执行的的SQL语句的信息.** 如果需要传入参数,在SQL语句中用’?'作为占位符,再调用sqlite
2013-06-05 15:55:54 459 1
转载 struct tm && ctime localtime mktime
1.概念在C/C++中,对字符串的操作有很多值得注意的问题,同样,C/C++对时间的操作也有许多值得大家注意的地方。下面主要介绍在C/C++中时间和日期的使用方法.通过学习许多C/C++库,你可以有很多操作、使用时间的方法。但在这之前你需要了解一些“时间”和“日期”的概念,主要有以下几个:Coordinated Universal Time(UTC):协调世界时,又称为世界标准
2013-04-12 12:01:20 629
转载 git用法
在git提交环节,存在三大部分:working tree, index file, commit这三大部分中:working tree:就是你所工作在的目录,每当你在代码中进行了修改,working tree的状态就改变了。index file:是索引文件,它是连接working tree和commit的桥梁,每当我们使用git-add命令来登记后,index file的内容就
2013-03-22 09:38:06 502
原创 cin.clear()
cin的缓存,你读取失败后,缓存内的内容不变,当你再次读取时,你读去的还是原来的内容,所以再次出错,而导致死循环附程序:#include #include using std::cin;using std::cout;using std::endl; int main() { int a; while(!(cin>>a)) { cout<<"Error!Input
2013-03-12 14:21:05 657
转载 struct&& class
参考 :http://www.cnblogs.com/zxsoft/archive/2007/12/13/992947.html
2013-02-24 20:47:36 190
原创 to get time
#include#include#include#includeusing namespace std;int main(void){ //time_t t_start,t_end; //t_start = time(NULL); //cout //_getch(); //t_end = time(NULL); //cout time_t t;
2013-01-06 15:45:42 231
转载 c++计时
Linux下使用clock_gettime给程序计时哦,clock_gettime( ) 提供了纳秒的精确度,给程序计时可是不错哦; 函数的原型如下:int clock_gettime(clockid_t clk_id, struct timespect *tp);clockid_t clk_id用于指定计时时钟的类型,对于我们Programmr以
2013-01-06 15:25:41 324
原创 c++ 父类和子类的方法调用
#includeusing namespace std;class Father{public:int getNum(){return 1;}private:int Num;};class Child:public Father{public:int getNum(){return Num;}int static const Nu
2012-12-29 10:46:05 2205
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人