object -c OOP , 源码组织 ,Foundation 框架 详解1 1.1 So what is OOP? OOP is a way of constructing software composed of objects. Objects are like little machines living inside your computer and talking to each other to get work done. oop 就是由对象构成的软件. 对象就像一些…
Also available on Github JSHint配置详解 增强参数(Enforcing Options) 本类参数设为true,JSHint会产生更多告警. bitwise 禁用位运算符(如^,|,&) 位运算符在JS中很少使用,性能也较差,出现&也很可能是想写&&. camelcase 使用驼峰命名(camelCase)或全大写下划线命名(UPPER_CASE) 这是条最佳实践,关键不在于采用什么样的命名规则(比如纯小写配下划线),而在于要有规则,在代码中看…