ARC的判断准则:只要没有强指针指向对象,就会释放对象。1、ARC特点:1>不允许调用release、retain、retainCount2>允许重写dealloc,但是不允许调用[super dealloc]3>@property的参数strong:成员变量是强指真(适用于OC对象类型)weak....
分类:
其他好文 时间:
2014-09-14 23:35:57
阅读次数:
224
【Objective-C】07-自定义构造方法和description方法// 构造方法:用来初始化对象的方法,是个对象方法,”-"开头// 重写构造方法的目的:为了让对象创建出来,成员变量就会有一些固定的值/*重写构造方法的注意点1.先调用父类的构造方法([super init])2.再进行子类内...
分类:
其他好文 时间:
2014-09-14 23:29:57
阅读次数:
455
一、计数器的基本操作1> retain : +1,方法返回的是对象本身2> release :-13> retainCount : 获得计数器4> dealloc* 当一个对象要被回收的时候,就会调用 * 一定要调用[super dealloc],这句调用要放在最后面2.概念1> 僵尸对象 :所占....
分类:
其他好文 时间:
2014-09-14 23:29:17
阅读次数:
363
Comparing Struts 1 and 2
Edit
Page Browse
Space Add
Page Add
News
Feature
Struts 1
Struts 2
Action classes
Struts 1 requires Action classes to ext...
分类:
其他好文 时间:
2014-09-14 18:04:57
阅读次数:
359
奶牛们最近从著名的奶牛玩具制造商Tycow那里,买了一套仿真版彩弹游戏设备(类乎于真人版CS)。 Bessie把她们玩游戏草坪划成了N * N(1 <= N<= 100)单位的矩阵,同时列出了她的 K (1 <= K <= 100,000)个对手在草地上的位置。然后她拿着这张表来找你,希望你能帮她计...
分类:
其他好文 时间:
2014-09-14 14:00:37
阅读次数:
288
Problem DescriptionAfter eating food from Chernobyl, DRD got a super power: he could clone himself right now! He used this power for several times. He...
分类:
其他好文 时间:
2014-09-14 12:39:27
阅读次数:
299
#pragma mark - 创建旋转动画提示- (CustomView *)initIndicatorViewWithTitle:(NSString *)title{ self = [super initWithFrame:[[UIScreen mainScreen] bounds]]; ...
分类:
其他好文 时间:
2014-09-13 22:40:06
阅读次数:
162
官方定义:write less ,do more :Lightweight Footprint、CSS3 Compliant、Cross-BrowserWhat is jQuery?jQuery is a fast, small, and feature-rich JavaScript librar...
分类:
Web程序 时间:
2014-09-13 22:39:56
阅读次数:
391
题目链接
题意:如果有一个数至少是两个不同的正整数的幂,那么称它为超级幂。按照升序输出1~2^64-1之间的所有超级幂。
思路:n = a ^ i = b ^ j,那么就证明指数要为合数,所以只要找出64以内的所以合数,然后枚举在1
代码;
#include
#include
#include
#include
#include
using names...
分类:
其他好文 时间:
2014-09-13 10:38:15
阅读次数:
209
Feature Queries 是CSS3 Conditional Rules specification中 的一部分,它支持“@supports”规则,“@supports”规则可以用来测试浏览器是否支持CSS属性和值对。CSS本身有降级机制,比如忽视 不支持的属性或值,但当很重要的属性直接被忽视也是很严重的,这个时候你可以用Feature Queries 测试是否支持所有的CSS规则,还可以优化你的页面。Queries在各个浏览器中已经有很多稳定的实现了,比如Chrome,Firefox和 Opera。...
分类:
Web程序 时间:
2014-09-12 17:18:44
阅读次数:
291