2. Scripting Strategies 2.1 Cache Component references (缓存组件引用) 使用 Rigidbody rigidbody = GetComponent<Rigidbody> 代替 GetComponent<Rigidbody> 可以减少CPU开销 ...
分类:
编程语言 时间:
2016-12-18 15:07:27
阅读次数:
175
如果你曾经使用 interface builder 创建过一个复杂、界面非常多的应用,你就会明白最后那些Storyboards 文件变的有多大。他会迅速变的无法管理,阻碍你的进度。自从引入 Storyboard 以来,其实是可以把你的应用的不同模块切开到不同的 Storyboard 中的。在过去,这 ...
分类:
移动开发 时间:
2016-12-10 13:24:15
阅读次数:
278
问题 weak 变量在引用计数为0时,会被自动设置成 nil,这个特性是如何实现的? 答案 在 Friday QA 上,有一期专门介绍 weak 的实现原理。https://mikeash.com/pyblog/friday-qa-2010-07-16-zeroing-weak-references ...
分类:
移动开发 时间:
2016-12-08 09:55:27
阅读次数:
322
Computer Systems A Programmer's Perspective Second Edition We have seen that C does not perform any bounds checking for array references, and that loc ...
分类:
其他好文 时间:
2016-12-06 14:28:46
阅读次数:
131
查询记录单表查询SELECT语句完整形式:SELECTselect_expr[,select_expr...][FROMtbl_references[WHERE条件][GROUPBY{col_name|position}[ASC|DESC],...分组][HAVING条件对分组结果进行二次筛选][ORDERBY{col_name|position}[ASC|DESC],...排序][LIMIT限制显示条数]]查询表达式..
分类:
数据库 时间:
2016-12-05 02:45:43
阅读次数:
210
【关键字 】paimary key 【代表主键】,not null【 非空 】foreign key【 代表外键】 (zhu) references【引用】 zhu ( code)[ 建立外键关系 ]auto_increment【自动递增】注释语法:用#注释、创建表create table test ...
分类:
数据库 时间:
2016-12-04 11:43:05
阅读次数:
171
create table test( code varchar(20) primary key, name varchar(20)); 关键字primary key 主键非空 not nullforeign key(列名)references 主表名(列名) 外键联合主键(表找不到主键)自增长列 a ...
分类:
数据库 时间:
2016-12-01 14:06:10
阅读次数:
234
Severity Code Description Project File Line Suppression StateError This project references NuGet package(s) that are missing on this computer. Use NuG ...
分类:
Web程序 时间:
2016-11-20 13:31:31
阅读次数:
331
References required: HttpContextWrapper - System.Web.dll RemoteEndpointMessageProperty - System.ServiceModel.dll OwinContext - Microsoft.Owin.dll (you ...
在使用SSH进行项目开发时,一不小心就可能出现以上的错误提示。 这样的问题可以简单理解为未找到名字为XXX的action 1)xxxAction没有在Struts.xml中配置相应的action; 大小写很关键,这里要仔细检查页面提交的action名方法名有没有错,struts.xml里的名字有没有 ...
分类:
编程语言 时间:
2016-11-12 11:26:06
阅读次数:
182