在swift 里引用循环的造成,主要有两个方法,
1.类之间的引用
2.clourse 闭包引用
解决办法:
weak references and unowned references. 也就是weak,unowned
weak, 来修饰可选的,? 结尾的,如:var weak city: String ?
unowned 来修身 一直存在的。 var unowned city: S...
分类:
其他好文 时间:
2015-05-19 16:43:14
阅读次数:
165
the first thing that we need to do (after creating a new WPF project) is add a few references. You can do this by by right-clicking on the references ...
分类:
其他好文 时间:
2015-05-17 11:58:00
阅读次数:
177
其实在Mysql中,多表联合update不是什么难事。 语法: UPDATE table_references SET col_name1=expr1 [, col_name2=expr2 ...] [WHERE where_definition] 示例: UPDATE table1, table2...
分类:
数据库 时间:
2015-05-11 21:44:03
阅读次数:
150
Description:Count the number of prime numbers less than a non-negative number,nclick to show more hints.References:How Many Primes Are There?Sieve of ...
分类:
其他好文 时间:
2015-05-09 13:11:21
阅读次数:
119
安装完Qt Add-in 打开VS2013的时候出现标题错误。QTDIR 需要设置成Qt安装目录下的vc,这个vc目录下包含include,lib,bin等文件夹。或者是在Qt Option里面设置Qt的版本路径references:http://stackoverflow.com/question...
分类:
数据库 时间:
2015-05-09 01:15:19
阅读次数:
591
constraint 外键别名 foreign key(a,b) references 外部表名(a,b);数据类型要保持一致
not null
unique
primary key(主键名)
auto_increment一个表只能有一个字段使用此约束且该字段必须为主键的一部分,约束的字段可以是任何整数类型。
zerofill默认自动添加无符号
unsigned
default...
分类:
数据库 时间:
2015-05-06 17:44:39
阅读次数:
149
本篇态度: simple & stupidweak reference
Weak reference objects, which do not prevent their referents from being made finalizable, finalized, and then reclaimed. Weak references are most often used to imp...
分类:
编程语言 时间:
2015-05-06 09:19:03
阅读次数:
188
Count PrimesDescription:Count the number of prime numbers less than a non-negative number,nclick to show more hints.References:How Many Primes Are The...
分类:
其他好文 时间:
2015-05-04 21:41:10
阅读次数:
112
WeakMemoryCache 源码:
BaseMemoryCache参见:http://blog.csdn.net/woliuyunyicai/article/details/45330867
/**
* Memory cache with {@linkplain WeakReference weak references} to {@linkplain android.graphic...
分类:
移动开发 时间:
2015-05-03 12:05:32
阅读次数:
230
Description:
Count the number of prime numbers less than a non-negative number, n
References:
How Many Primes Are There?
Sieve of Eratosthenes
题意很简单,求n以内的素数的个数
注意:不包括n
如果注意到refe...
分类:
其他好文 时间:
2015-05-03 10:41:12
阅读次数:
112