// First program example #import <Foundation/Foundation.h> int main (int argc, const char * argv[]) { @autoreleasepool { NSLog (@"Programming is fun!"); } ; } 在开始解释这程序之前,我们需要先讲述下编译和运行的步骤.你可以使用xcode来编译运行,或者你也可以在终端使用oc的编译命令来编译运行.此处只介绍使用Xcode…
"undefined behavior: behavior for which this International Standard imposes no requirements." example of Undefined Behavior Use of an uninitialized variable  Misaligned pointers  Access to an object past end of lifetime  The Compiler and Unde…