前言 这是我在我们技术团队所做的一次分享,稍作改动放到博客上来. 我们技术团队会不定期(一般一个月1~2次)做技术分享,对我们团队有兴趣的能够私信我. 下面是正文. 这里的主题是"Inside ARC",顾名思义.主要是探讨ARC在我们看不见的地方为我们做了什么事情.以及怎么做的.出发点是对底层实现的兴趣,不了解这些也最好还是碍写好代码.了解一点应该故意. 下面一些内容參考自Apple的官方文档<Transitioning to ARC Release Notes>或维基百…
This section deals with more theoretical aspects of types. A type system is a set of rules used by a language to structure and organize its collection of types. We use the term object (or data object) to denote both the storage and the stored value.…
AutoReleasePool autoreleasepool并不是总是被auto 创建,然后自动维护应用创建的对象. 自动创建的情况如下: 1. 使用NSThread的detachNewThreadSelector:toTarget:withObject:方法创建新线程时,新线程自动带有autoreleasepool. 2. Main thread of Cocoa Application 以下情况需要开发者创建: 1. 在使用Dispatch Queue时, 虽然其Pool中每个thread…
2015-05-26   628   Code-Tuning Techniques    ——Even though a particular technique generally represents poor coding practice, specific circumstances might make it the best one to use.    ——One key to writing effective loops is to minimize the work don…
最近升级了xcode4.5,用上了ios6的SDK.但用着用着发现一个比较烦的问题,以前很多代码提示错误,发现原来因为xcode启用了ARC,当ARC启用后会自动在代码中加入retain.release,原先需要手动添加的用来处理内存管理的引用计数的代码可以自动地由编译器完成了.虽然有很大的好处,但是对于以前代码中加的retain.release等会因此报错,解决办法很简单,禁用ARC即可,方法如下: 可以在 Build Setting => "Apple LLVM compiler 3.…
A code sequence made up multiple instructions and specifying an offset from a base address is identified in an object file. The offset from the base address corresponds to an offset location in a memory configured for storing an address of a variable…
http://kalali.me/manage-administrate-and-monitor-glassfish-v3-from-java-code-using-amx-jmx/ Manage, Administrate and Monitor GlassFish v3 from Java code usingAMX & JMX 0 inShare Digg Digg Management is one of the most crucialparts of an application s…
在编程过程中,我们会用到很多各种各样的他人封装的第三方代码,但是有很多第三方都是在非ARC情况下运行的,当你使用第三方编译时出现和下图类似的错误,就说明该第三方是非ARC的,需要进行一些配置.…
转:http://blog.csdn.net/duxinfeng2010/article/details/8709697 实践总结:-fno-objc-arc 设置 解决了 旧代码中存在 release autorelease retain 等手动管理内存代码的错误. Xcode4.2(iOS 5)以后启用了ARC技术,虽然4.2以后版本仍然可以不开启ARC,但是我们在建工程的时候有时为了不想管理内存然后就启用了ARC,但是再开发过程中需要用到第三开发类库,而这些第三方类库或是没做更新而不支持A…
[Tool] 使用Visual Studio Code开发TypeScript 注意 依照本篇操作步骤实作,就可以在「Windows」.「OS X」操作系统上,使用Visual Studio Code开发TypeScript. 前言 为了解决JavaScript:缺少面向对象语法.缺少编译期间错误检查...等等问题.微软提供了一个开源的TypeScript语言,让开发人员能够使用面向对象撰写TypeScript程序代码,接着再透过TypeScript编译程序将程序代码编译成为JavaScript…