码迷,mamicode.com
首页 >  
搜索关键字:assign    ( 1802个结果
ZOJ3331---Process the Tasks(dp)
There are two machines A and B. There are n tasks, namely task 1, task 2, ..., task n. You must assign each task to one machine to process it. There are some facts you must know and comply with:You mus...
分类:其他好文   时间:2015-04-14 18:06:58    阅读次数:170
Samurai Framework 学习笔记--samurai中的宏魔法(待更新)
samurai中的宏魔法文件 Samurai_Predefine.h Samurai里的一些预设宏// 这3个宏是在定义属性 @prop_assign( NSInteger, page IN)的时候标记这个数据流的方向时用的. #define IN #define OUT #define INOUT // 函数属性限定符: __attribute__((unused)) 这个限定符属性禁止编译器在...
分类:其他好文   时间:2015-04-13 14:43:15    阅读次数:149
IOS中atomic/nonatomic、retain/assign的区别
atomic:原子操作,在多线程环境下提供操作保护;nonatomic:非原子操作,不提供保护,在多线程环境下可能发生未知错误;retain:保持引用,也就是对象的引用计数值 count += 1,由此得到的对象和传入的对象指向的是同一内存空间,相当于指针赋值;assign:赋值操作,会在内存中开辟...
分类:移动开发   时间:2015-04-13 12:27:41    阅读次数:114
代理的使用
MyView.h@protocal ViewTouchDelegate @required -(void)touchMyView;@end{ iddelegate;}@property (nonamtic,assign)iddelegate;-(void)touchMyView;MyView.m-....
分类:其他好文   时间:2015-04-11 20:45:43    阅读次数:115
二)CodeIgniter源码分析之CodeIgniter.php
$assign_to_config['subclass_prefix'])); }/* * ------------------------------------------------------ * Set a liberal script execution time limit * ...
分类:Web程序   时间:2015-04-10 19:41:04    阅读次数:211
php开发之smarty一
关于smarty的配置在这里就不说了。这里就说一下其中的两个函数。 (1) assign 方法 assign 用于在模版被执行时为模版变量赋值,语法格式如下: {assign var =”” value =”“} 参数var为被赋值的变量名,参数value是赋给变量的值。(2)display方法 display 用来显示模版,需要制定一个合法的模版资源的类型和路径。 语法格式如下: v...
分类:Web程序   时间:2015-04-09 17:22:17    阅读次数:158
c++ deque 双端队列
双端队列:函数描述c.assign(beg,end)c.assign(n,elem)将[beg; end)区间中的数据赋值给c。将n个elem的拷贝赋值给c。c.at(idx)传回索引idx所指的数据,如果idx越界,抛出out_of_range。c.back()传回最后一个数据,不检查这个数据是否...
分类:编程语言   时间:2015-04-06 12:47:22    阅读次数:158
Change shortcut key of forward navigation in VS2012 text editor
Keywords: Visual Studio, shortcut key, Alt, RightArrow, navigation,NavigateForward,CompleteWordIf you want to assign shortcut key toAlt+Right Arrow (f...
分类:其他好文   时间:2015-04-05 14:30:51    阅读次数:123
thinkphp微信开发之jssdk图片上传并下载到本地服务器
随便写个方法public function test2(){ $Weixin = new \Weixin\Controller\BaseController(); $this->assign('signPackage', $Weixin->jssdk->GetSignPa...
分类:微信   时间:2015-04-03 18:57:38    阅读次数:403
OC语法相关
@property 参数copy:NSString;strong:一般对象weak:UI控件assign:基本数据类型instancetypeinstancetype在类型表示上,跟id一样,可以表示任何对象类型instancetype只能用在返回值类型上,不能像id一样用在参数类型上instanc...
分类:其他好文   时间:2015-04-03 00:05:40    阅读次数:161
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!