码迷,mamicode.com
首页 >  
搜索关键字:fun    ( 10813个结果
在JavaScript中创建命名空间的几种写法
在JavaScript中全局变量经常会引起命名冲突,甚至有时侯重写变量也不是按照你想像中的顺序来的,可以看看下面的例子:var sayHello = function(){ return 'Hello var';};function sayHello(name){ return 'Hello fun...
分类:编程语言   时间:2014-07-16 22:52:29    阅读次数:230
angularjs 服务
内置服务1、$timeout2、$watch(obj,fun)fun(newVal,oldVal,scope) //newVal是新改变的值,oldVal是旧值内置函数:1、dateFilter(time,format)//参数time是时间,format是格式化
分类:Web程序   时间:2014-07-16 21:15:16    阅读次数:186
第一周 从C走进C++ 008 函数缺省参数
1. 函数的缺省参数? C++中,定义函数的时候可以让最右边的连续若干个参数有缺省值,那么调用函数的时候,若相应位置不写参数,参数就是缺省值。void func( int x1, int x2 = 2, int x3 = 3) { }func(10 ) ; //等效于func(10,2,3)fun....
分类:编程语言   时间:2014-07-16 18:51:23    阅读次数:184
字符串作为函数模版实参的意外情况
有时,当把c风格的不同字符串去实例化函数模版的同一个模版参数时,在实参演绎的过程中经常会发生 意想不到的事情,那就是编译失败,并报错类型不匹配。 正如下面的例子一样: #include using namespace std; /* *匹配测试 */ template int ref_fun(T & t1,T & t2) { return strlen(t1) - strlen(t2);...
分类:其他好文   时间:2014-07-13 17:04:42    阅读次数:208
libguestfs手册(2):guestfish command
添加一个drive:guestfs_add_drive_optsadd-drive filename [readonly:true|false] [format:..] [iface:..] [name:..] [label:..] [protocol:..] [server:..]This fun...
分类:其他好文   时间:2014-07-11 20:10:26    阅读次数:392
c++ 爬虫
这是一个简单的c++爬虫,效率并不是很高... 1 #include 2 int s1[1000000],s2[1000000]; 3 void fun(int a, int b) 4 { 5 int i,ii; 6 bool t1,t2,t3,t4; 7 s1[0] = s...
分类:编程语言   时间:2014-07-11 18:05:16    阅读次数:297
C++ 虚函数的缺省参数问题
前些日子,有个同学问我一个关于虚函数的缺省参数问题。他是从某个论坛上看到的,但是自己没想通,便来找我。现在分享一下这个问题。先看一小段代码: #include using namespace std; class A { public: virtual void Fun(int number = 10) { cout << "A::Fun ...
分类:编程语言   时间:2014-07-10 23:05:08    阅读次数:297
P1001 第K极值【tyvj】
1 /*========================================== 2 P1001 第K极值 3 内存限制 128MB 代码限制 64KB 4 描述 Description 5 给定一个长度为N(041 #include42 #include43 int fun(...
分类:其他好文   时间:2014-07-09 18:28:06    阅读次数:228
obj-c编程15[Cocoa实例02]:KVC和KVO的实际运用
我们在第16和第17篇中分别介绍了obj-c的KVC与KVO特性,当时举的例子比较fun,太抽象,貌似和实际不沾边哦。那么下面我们就用一个实际中的例子来看看KVC与KVO时如何运用的吧。...
分类:其他好文   时间:2014-07-08 16:49:12    阅读次数:186
C语言中的函数指针
C语言中的函数指针 函数指针的概念:   函数指针是一个指向位于代码段的函数代码的指针。 函数指针的使用:    #include typedef struct (*fun_t) (int,int); fun_t pf; int add(int a, int b) { return a+b; } int sub(int a,int b) { retu...
分类:编程语言   时间:2014-07-08 14:40:05    阅读次数:217
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!