摘要:
属性与内存管理(属性与内存管理都是相互关联的)第一部分一,属性:属性是OC2.0之后出来的新语法,用来取代setter和getter方法,使用属性能够高速创建setter以及getter方法的声明,setter和getter方法的实现,另外加入了对实例变量操作的安全处理(其安全是通过内存管理实现的)... 阅读全文
摘要:
Pat1043代码题目描写叙述:A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:The left subtree of a node conta... 阅读全文
摘要:
auto话说C语言还处于K&R时代,也有auto a = 1;的写法。中文译过来叫自己主动变量。跟c++11的不同。C语言的auto a = 1;相当与 auto int a = 1;语句。 而C++11的auto是有着严格的类型推导出来的。曾经是这么写int a = 1;如今,编译器知道a是int... 阅读全文