对应经常使用jquery的朋友,方法的链式调用应该是已经很属性了,书上有模拟出一个很简单的类库代码,见代码如下:Function.prototype.method = function(name,fn){ this.prototype[name] = fn; return this;};(fun.....
分类:
编程语言 时间:
2014-06-28 23:12:29
阅读次数:
320
create function fun_getPY ( @str nvarchar(4000) )returns nvarchar(4000)asbegin declare @word nchar(1),@PY nvarchar(4000) set @PY='' while len(@...
分类:
数据库 时间:
2014-06-28 12:58:14
阅读次数:
225
#!/bin/bash
echo"这个是系统初始化脚本,请慎重运行!"
input_fun()
{
OUTPUT_VAR=$1
INPUT_VAR=""
while[-z$INPUT_VAR];do
read-p"$OUTPUT_VAR"INPUT_VAR
done
echo$INPUT_VAR
}
input_again()
{
MYHOSTNAME=$(input_fun"pleaseinputthehostname:")
DOMAINNAME=$(input_fun"p..
分类:
其他好文 时间:
2014-06-25 06:16:37
阅读次数:
345
create table student
(
id varchar2(5) primary key,
name varchar2(20), not null,
sex char(2) check(sex='男' or sex='女')
)
--向student中插入一条数据,用函数来验证插入是否正确
create or replace function (f_id in varchar2...
分类:
数据库 时间:
2014-06-25 00:11:31
阅读次数:
376
C语言中宏的使用(#,##,do…while(0)宏)
1.预定义宏的使用__FILE__,__FUNCTION__,__LINE__。
#include
void fun(void)
{
char v1;
short v2;
int v3;
long v4;
printf("v1: %x\n",&v1);
printf("v2: %x\n",&v2);
print...
分类:
编程语言 时间:
2014-06-24 15:29:13
阅读次数:
214
//函数调用 bind&functionvoid fun(){ CCLOG("Hello cocos"); return;}std::function f = std::bind(fun);fun();-------------------void fun1(){ int numb...
分类:
其他好文 时间:
2014-06-21 09:55:02
阅读次数:
166
转自:http://blog.csdn.net/chenzujie/article/details/7011639先来看两段小程序:1)、#include #include void main(void){char *str1 = "just have fun";char *str2 = "happ...
分类:
编程语言 时间:
2014-06-20 15:12:51
阅读次数:
254
##**问题起源**先看下面很简单的一小段程序。```cpp`#include ```````cpptemplate struct Base { void fun() { std::cout struct Derived : Base{ void gun() { ...
分类:
其他好文 时间:
2014-06-19 06:11:12
阅读次数:
244
代理是一种特殊的,指向某个方法模块所在的地址。一般来讲,那个方法模块,可以是一个普通的方法,更多的时候,是一团匿名的lamda表达式,即一个匿名方法。现在简单理解一下代理的简写方式,即Action关键字。
class A
{
B b = new B();
public delegate string Show(string result);
...
分类:
其他好文 时间:
2014-06-18 06:54:36
阅读次数:
253
贴一下代码,例子是从别人那里直接抄来的:-module(myudp).-export([start/0, client/1]).%% Serverstart() -> spawn(fun() -> server(4000) end). server(Port) -> {ok, So...
分类:
其他好文 时间:
2014-06-17 21:07:49
阅读次数:
225