__builtin_prefetch() 是 gcc
的一个内置函数。它通过对数据手工预取的方法,减少了读取延迟,从而提高了性能,但该函数也需要 CPU 的支持。该函数的原型为:void
__builtin_prefetch (const void *addr, ...)其中参数 addr 是个内存...
分类:
其他好文 时间:
2014-04-28 06:59:12
阅读次数:
519
prototype 原型。我们每创建一个函数 都会创建一个
prototype的属性,这个属性指向了这个函数的原型对象。function A(){} ,A.prototype
,prototype原型只能运用在对象上,不能运用在对象的实例上 也就是说A.prototype 是可以的 var a=ne...
分类:
Web程序 时间:
2014-04-28 05:00:54
阅读次数:
545
1.普通工厂模式package CommonFactory;public class Test {
public static void main(String[] args) { VehicleFactory factory = new
CarFactory(); ...
分类:
其他好文 时间:
2014-04-28 04:46:43
阅读次数:
427
1、起因最近发现程序中有一段控制TextBox数字输入的代码,相信大家都不会太陌生,如下:void
int_KeyPress(object sender, KeyPressEventArgs e){ const char Delete = (char)8;
if (!Char.IsDig...
分类:
其他好文 时间:
2014-04-28 04:01:42
阅读次数:
393
对于实际的业务系统,通常有一些热点的表,insert和delete的量非常大,这个时候就会发现一些查询语句的逻辑读比较偏高,这时可能就是oracle在构建一致性块的进行的consistent
read。下面做一个测试看下:第一步准备数据:create table test(col1 varchar2...
分类:
数据库 时间:
2014-04-28 03:57:41
阅读次数:
821
new operator/delete
operator就是new和delete操作符,而operator new/operator delete是函数。new
operator(1)调用operator new分配足够的空间,并调用相关对象的构造函数(2)不可以被重载operator new(1)...
分类:
编程语言 时间:
2014-04-28 03:40:02
阅读次数:
566
#includeusing namespace std;#define MAXN 1000000int
a[MAXN],b[MAXN]; //点的横纵坐标void TuBao(int x[MAXN],int y[MAXN],int n){ int
count1=0,count2=0; f...
分类:
其他好文 时间:
2014-04-28 03:10:03
阅读次数:
335
局部变量:
在函数内部声明的变量为局部变量,局部变量的意思即该变量只存活在该函数中,假如该函数调用结束,那么该变量的寿命也结束了.举例:#includeusing
namespace std;void swap(int ,int );//两个参数变量可以省略int main(){ int x=...
分类:
编程语言 时间:
2014-04-27 22:20:36
阅读次数:
562
/*
功能:实现对眼睛、脸部的跟踪。
版本:1.0
时间:2014-4-27
*/
#include
#include
#include
#include
#include
#include
using namespace std;
using namespace cv;
void detectEyeAndFace( Mat frame );
//将下面两个文件复制到当前工...
分类:
其他好文 时间:
2014-04-27 20:40:47
阅读次数:
659
有个项目需要实现push的方式从左向右,现在记录一下我的学习过程
push 从左向右
- (void)settingBtnMethod{
CATransition *transition = [CATransition animation];
transition.duration = 0.5f;
transition.timingFunction ...
分类:
其他好文 时间:
2014-04-27 18:53:32
阅读次数:
577