#include "stdafx.h"#include #include #include using
namespace std;INT i;VOID CALLBACK Fun(PTP_CALLBACK_INSTANCE Instancd,PVOID
Context,PTP_WORK Work){...
分类:
编程语言 时间:
2014-05-16 06:42:47
阅读次数:
421
test
// alert(jQuery());
function print(string){
document.write(string+"");
};
document.write("********无返回值的情况***************");
(function(){
var jq = (function(){
var jq = fun...
分类:
编程语言 时间:
2014-05-15 11:14:55
阅读次数:
373
JQuery官方API关于filter方法的介绍有这么一个实例:
也就是说除了常规的使用.filter(selector)的方式来过滤内容外,我们还可以使用.filter(function(index) {
....//判断语句,返回Boolean值})的方式来实现所需功能。需要了解的是这里的fun...
分类:
其他好文 时间:
2014-05-10 07:20:01
阅读次数:
318
1. 定义js类 js并不是一种面向对向的语言, 没有提供对类的支持,
因此我们不能像在传统的语言里那样 用class来定义类, 但我们可以利用js的闭包封装机制来实现js类, 我们来封装一个简的Shape类. 代码如下:
function ShapeBase() { this.show = fun...
分类:
Web程序 时间:
2014-05-10 06:11:24
阅读次数:
282
function Fun(x: Integer): Integer;asm mov ecx,
&x dec ecx {汇编中的 dec 是减 1 指令, 和 Delphi 是一样的} mov @Result, ecx {在本例中去掉 @ 也可以,
暂时不知怎么回事}end;去掉两个符号,对...
分类:
其他好文 时间:
2014-05-09 09:20:32
阅读次数:
323
void fun(char *str){ char *a = new
char[strlen(str)+1]; memcpy(a, str, strlen(str)+1); if (...) { return; } else if
(...) {return; } delete a; return;...
分类:
其他好文 时间:
2014-05-09 07:35:24
阅读次数:
257
function myfunction(msg) print("this is msg fun "
.. msg);endlocal fun =_G["myfunction"];if fun then fun("is ok");end
分类:
其他好文 时间:
2014-05-09 04:18:05
阅读次数:
1155
面向对象:先抽象后具体抽象类也叫基类抽象函数:只有函数的定义,没有函数体的函数,语法:类必须定义为抽象类,才能调用抽象函数,抽象类里面可以没有抽象函数abstract
class Printer { abstract void fun();}抽象类不能生成对象,而抽象类通常被继承,继承的使用方...
分类:
编程语言 时间:
2014-05-09 04:15:09
阅读次数:
264
#include "stdafx.h"#include #include using
namespace std;HANDLE hMutex;DWORD WINAPI Fun(LPVOID lp){ while(1){
WaitForSingleObject(hMutex,INFINITE); .....
分类:
编程语言 时间:
2014-05-08 22:41:35
阅读次数:
406
ptr_fun是将一个普通的函数适配成一个functor,添加上argument
type和result type等类型,
其实现如下(例子里面是binary_function,unary_function同理):C++代码templateinlinepointer_to_binary_functi...
分类:
其他好文 时间:
2014-05-07 20:33:56
阅读次数:
393