1,事务处理innodb 支持事务功能,myisam 不支持。Myisam
的执行速度更快,性能更好。2,select ,update ,insert ,delete
操作MyISAM:如果执行大量的SELECT,MyISAM是更好的选择InnoDB:如果你的数据执行大量的INSERT或UPDATE...
分类:
数据库 时间:
2014-06-06 21:36:17
阅读次数:
381
Divide two integers without using
multiplication, division and mod operator. 1 class Solution { 2 public: 3 int
divide(int dividend, int divisor) ...
分类:
其他好文 时间:
2014-06-06 17:40:07
阅读次数:
193
下载远程仓库 git clone 分支管理删除本地分支 $git branch -d $git
branch -D 查看所有分支 $git branch -a删除远程分支 $git push origin :git v1.7.0之后 $git push
origin --delete ...
分类:
其他好文 时间:
2014-06-06 16:40:23
阅读次数:
174
Given a sorted linked list, delete all
duplicates such that each element appear onlyonce.For
example,Given1->1->2, return1->2.Given1->1->2->3->3,
retu...
分类:
其他好文 时间:
2014-06-06 14:54:28
阅读次数:
221
操作符重载函数(Operator Overload
Function)的基本概念:目的是以与对待内置数据类型相同的方式对待用户自定义类型(程序执行速度会受到影响),限制是不能随意选择函数名和参数个数(必须与重载的基本类型运算符保持一致);编译器首先检查的表达式中的左操作数是否为对象类型,若是则在其类...
分类:
编程语言 时间:
2014-06-06 10:33:38
阅读次数:
388
delete table atruncate table
b用truncate删除表比delete删除表 逻辑读和cost都有明显的减少delete
删除并不能释放空间,虽然将很多块的记录删除,但空间依然会保留,oracle在查询时,依然会查询这些块而truncate是一种释放高水平位的动作,这些空...
分类:
其他好文 时间:
2014-06-06 07:32:46
阅读次数:
337
1.ostream & operator> a >> b >>
c; 输入: yuandedong 123 h a: yuandedong b: 123 c: h 读完yuandedong后 就返回cin
相当于cin>>b>>c; 因此不可能将h读到a中。 6.cin输入的注意事项 看下例: 结果...
分类:
编程语言 时间:
2014-06-06 07:28:55
阅读次数:
394
Given a sorted linked list, delete all
duplicates such that each element appear onlyonce.For
example,Given1->1->2, return1->2.Given1->1->2->3->3,
retu...
分类:
其他好文 时间:
2014-06-06 07:00:36
阅读次数:
269
特殊工具与技术--优化内存分配[续1]三、operator new函数和operator delete 函数– 分配但不初始化内存 首先,需要对new和delete表达式怎样工作有更多的理解。当使用new表达式 string *sp = new string("initialized");
的时候,实际上发生三个步骤: 1)首先,表达式调用名为operatornew 的标准库函数,分配足够大...
分类:
编程语言 时间:
2014-06-04 13:42:19
阅读次数:
453
1.运行终端,执行命令行进入missing file目录,然后运行svn delete
nameOfMissingFile或git rm nameOfMissingFile2.删除隐藏的.svn文件。命令行运行defaults write
com.apple.finder AppleShowAllF...
分类:
其他好文 时间:
2014-06-03 16:20:06
阅读次数:
405