码迷,mamicode.com
首页 >  
搜索关键字:add    ( 36740个结果
Yii表单验证中,提交前验证,不通过不提交
$form?=?$this->beginWidget(‘CActiveForm‘,array( ????????‘id‘?=>?‘add_host‘, ????????‘enableAjaxValidation‘?=>?false, ????????‘enableClientValidation‘?=>?true, ???...
分类:其他好文   时间:2014-08-02 01:57:42    阅读次数:228
Java epoll
the Gemfire consultant add one more parameter to JVM -Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.EPollSelectorProvider to be honest, I had no idea what it was. so I googled it. the key thin...
分类:编程语言   时间:2014-08-02 01:57:13    阅读次数:235
CSU 1256 天朝的单行道
题目来源:http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1256 一个完全单向的有向图,最少更改多少条边能够从1到N。把原有的边的权值设为0,换方向的边的权值设为1。简历邻接表。add_edge(u,v,0);add_edge(v,u,0);采用....
分类:其他好文   时间:2014-08-01 22:57:32    阅读次数:204
标C编程笔记day05 函数声明、文件读写、联合类型、枚举类型
函数声明:     1、隐式声明:在没有声明的情况下,系统可根据参数类型判断去调用函数(有可能出错)     2、显式声明:声明在被调用之前,如:double add(double,double);  函数声明参数可只写类型,不需要写函数体。 文件操作:     fopen  --打开文件,FILE *pFile=fopen("a.txt","w");         fopen的打...
分类:其他好文   时间:2014-08-01 19:51:23    阅读次数:200
读javascript高级编程09-BOM
一、window1.在全局作用域中定义的变量和函数会被归在window对象。var a=1,b=2;function add(a,b){return a+b;}console.log(window.a);//1console.log(window.add(a,b));//3有点区别在于,全局变量不能...
分类:编程语言   时间:2014-08-01 18:32:42    阅读次数:239
Service Reference
1 Add Web Reference 根据wsdl文件,按照老的asp.net webservice客户访问机制,生成webservice代理类的方法,即从System.Web.Services.Protocols.SoapHttpClientProtocol派生而来,代理类代码可以指定要访问的U...
分类:其他好文   时间:2014-08-01 16:01:11    阅读次数:241
cocos2d-x 锚点理解
见如下代码:CCSprite* child = CCSprite::create("child.png");child->setAnchorPoint(ccp(0.5, 0.5));child->setPosition(ccp(0, 0));parent->addChild(child);//add...
分类:其他好文   时间:2014-08-01 15:50:31    阅读次数:236
Add-VMNetworkAdapterAcl(添加访问控制列表)
Add-VMNetworkAdapterAclCreates an ACL to apply to the traffic through a virtual machine network adapter.Example 1This example adds an ACL to allow vir...
分类:Web程序   时间:2014-08-01 15:39:21    阅读次数:424
codeforces Beta Round #19 D. Point (线段树 + set)
题目大意: 对平面上的点进行操作。 add x y 在 (x,y )上加一个点。 remove x y 移除 (x,y)上的点。 find x y 求出在(x,y)右上角离他最近的点,优先级是靠左,靠下。 思路分析: find 操作 比较麻烦。 要保证x大的同时还要确保x最小,而且该x上还要有点。 这样要找大的时候要小的,就是在线段树上选择性的进入左子树还是右子树。 所以...
分类:其他好文   时间:2014-08-01 13:51:52    阅读次数:241
栈应用—表达式求值
#include #include #define LENGTH 100 //初始分配栈的长度 #define ADD_LEN 10 //栈长增量 typedef struct //定义字符栈 { int *base; int *top; int stacksize; }SqStack; void InitStack(SqStack &S); //初始化一...
分类:其他好文   时间:2014-08-01 13:50:31    阅读次数:237
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!