cursor一、分类:静态游标 显式游标(需要明确定义) 隐式游标(所有dml语句都为隐式游标,for循环也是隐式游标)ref游标 (尽量不用ref游标,ref游标可在程序间传递数据集) 强类型ref游标(定义中有返回值) 弱类型ref游标(定义中无返回值)二、游标的几个状态值:(...
分类:
其他好文 时间:
2015-01-05 23:09:43
阅读次数:
187
如zerop // 判断参数是否为0的函数listp // 判断参数是否是列表的函数p 是 predicate 的缩写predicate['pred?k?t]vi. 断言In the jargon used by the early Lisp researchers, a predicate ref...
分类:
其他好文 时间:
2015-01-05 16:21:59
阅读次数:
106
#include #include void f(int& n1, int& n2, const int& n3){ std::cout bound_f = std::bind(f, n1, std::ref(n2), std::cref(n3)); n1 = 10; n2 = ...
分类:
其他好文 时间:
2015-01-05 10:49:35
阅读次数:
97
C#捕获windows关机事件,在系统关机前做一些自己想做的事;有些时候我们可能想在Windows关机时记录或处理一些事情,这里提供几种方法。方法一: ///
/// 窗口过程的回调函数
///
///
protected override void WndProc(ref Message m)
{...
ffmpeg安装
1.下载ffmpeg源码 ffmpeg.org
2.解压 tar -jvxf ffmpeg-2.5.2.tar.bz2
3.进入目录 ./configure
1)解决 ffmpeg yasm not found, use --disable-yasm for a crippled build ref:blog.csdn.net/ranxiedao/article/deta...
分类:
系统相关 时间:
2015-01-02 22:30:43
阅读次数:
214
安装360安全卫士linux版
1.下载安装包linux.360.cn
选择版本360安全卫士forLinux
(Deepin 64位x64平台)
2.安装dpkg -i 360safeforlinux-3.0.0.66-stripped.deb
2.1
错误提示缺少curl
sudo apt-get installcurl
安装curl失败
Ref:www.linuxde...
分类:
系统相关 时间:
2015-01-02 22:30:25
阅读次数:
8384
In C# we have ref and out, while in Java we don't.To do something similar to ref, there are normally 4 ways.Check this out:http://stackoverflow.com/qu...
分类:
编程语言 时间:
2015-01-02 06:21:49
阅读次数:
158
ylbtech-Microsoft-CSharpSamples:ylbtech-LanguageSamples-OfficeSample(COM 互操作)1.A,示例(Sample) 返回顶部本示例演示如何使用称为“COM 互操作”、“省略 ref”、“索引属性”、“命名参数”和“可选参数”的 C#...
分类:
其他好文 时间:
2015-01-02 01:09:59
阅读次数:
306
linux:鸟叔基础+服务端apue (linux c) too bigLinux/UNIX系统编程手册:http://www.amazon.cn/图书/dp/product-description/B00HLA8TYG/ref=dp_proddesc_0?ie=UTF8&s=books Linux...
分类:
其他好文 时间:
2015-01-01 23:44:10
阅读次数:
209
1、不调用autorelease()的情况TestVO*vo=newTestVO();
//未调用create()方法创建,没有执行过autorelease()
vo->init();
//这种情况下局部变量无法被回收
vo->release();
//需要手动调用release()方法
//CC_SAFE_DELETE(vo);
//也可以用这种方法删除2、调用autorelease(..
分类:
其他好文 时间:
2015-01-01 18:41:29
阅读次数:
369