摘要: // // ViewController.m // 多线程 // // #import "ViewController.h" @interface ViewController () @end @implementation ViewController /* >1 队列和线程的区别: 队列:是管理 阅读全文
posted @ 2016-01-26 22:39 张凯泽 阅读(206) 评论(0) 推荐(0) 编辑
摘要: // // ViewController.m // 链表 // // Created by 张凯泽 on 16/1/26. // Copyright © 2016年 rytong_zkz. All rights reserved. // #import "ViewController.h" /* static 关键字的作用: (1)函数体内 static 变... 阅读全文
posted @ 2016-01-26 22:34 张凯泽 阅读(219) 评论(0) 推荐(0) 编辑
摘要: C程序一直由下列部分组成:1)正文段——CPU执行的机器指令部分;一个程序只有一个副本;只读,防止程序由于意外事故而修改自身指令;2)初始化数据段(数据段)——在程序中所有赋了初值的全局变量,存放在这里。3)非初始化数据段(bss段)——在程序中没有初始化的全局变量;内核将此段初始化为0。4)栈——... 阅读全文
posted @ 2016-01-26 10:45 张凯泽 阅读(1112) 评论(0) 推荐(0) 编辑