1 history.go(0)
2 location.reload()
3 location=location
4 location.assign(location)
5 document.execCommand('Refresh')
6 window.navigate(location)
7 location.replace(location...
分类:
编程语言 时间:
2015-03-30 11:30:12
阅读次数:
112
一般输出都是先定义一个寄存器来暂存数据,由此寄存器再输出给输出端口或内部信号,是为了避免当执行别的操作时输出失去驱动源。例如: rData <= RAM[ Read_Addr_Sig ]; assign Read_Data = rData; //引脚输出或是内部信号rData 寄存器是用...
分类:
其他好文 时间:
2015-03-29 20:52:25
阅读次数:
135
@property 参数copy:NSString;strong:一般对象weak:UI控件assign:基本数据类型instancetypeinstancetype在类型表示上,跟id一样,可以表示任何对象类型instancetype只能用在返回值类型上,不能像id一样用在参数类型上instanc...
分类:
移动开发 时间:
2015-03-28 18:31:09
阅读次数:
137
@interface JSIndexPath : NSObject@property (nonatomic, assign) NSInteger column;
@property (nonatomic, assign) NSInteger leftOrRight;
@property (nonatomic, assign) NSInteger leftRow;
@property (nonatom...
分类:
其他好文 时间:
2015-03-28 15:48:34
阅读次数:
132
在Smarty模板中主要都是以变量为主,下面就是有关Smarty的三大变量以及一些普通的用法
首先在根目录下建立要用到的文件基本和上一次一样,configs是配置文件夹
一、从PHP中分配的变量
用$smarty->assign()
$smarty->display()
首先先编写初始化的php代码,和上一篇的 c...
分类:
Web程序 时间:
2015-03-21 15:43:48
阅读次数:
154
1 Tcl commandsThe basic syntax iscommand arg1 arg2 arg3 ...2 UNIX Tcl scriptsExample 2.1 puts -writes the string to I/O steam set - assign a...
分类:
其他好文 时间:
2015-03-18 20:00:20
阅读次数:
225
1》set方法内存管理的相关参数
retain
//release旧值,retain新值 (适用于OC对像类型)
assign
//直接赋值 (默认的参数,适用于非OC对象)
copy
//release旧值,copy新值
2》是否生成setter或者getter方法
readwrite
//同时生成setter和getter方法
readonly
//只生成gett...
分类:
其他好文 时间:
2015-03-18 14:04:48
阅读次数:
132
------- android培训、java培训、期待与您交流! ----------内存管理之三——《@property的内存管理》1.@property中与setter内存管理相关的参数retain : release旧值,retain新值(适用于OC对象类型);assign : 直接赋值,(默...
分类:
其他好文 时间:
2015-03-18 01:11:13
阅读次数:
158
首先建立一个HJShop类,实现NSCoding协议#import @interface HJShop : NSObject@property (nonatomic, copy)NSString *name;@property (nonatomic, assign)double price;@end...
分类:
数据库 时间:
2015-03-17 14:09:30
阅读次数:
133
order('create_time desc')->limit(2)->select(); $this->assign('list', $list); $this->display(); } public function upload() { ...
分类:
Web程序 时间:
2015-03-17 12:16:39
阅读次数:
127