摘要: 苹果在 Xcode 6 中添加了调试视图层次结构的功能,这一举动很可能是受到非常受欢迎的应用 Reveal 和 Spark Inspector 的启发。相对于 Xcode,它们在许多方面表现更好,功能更多。然后会出现层次结构程序运行起来后,也可以在控制台输入po [[[UIWindow keyWin... 阅读全文
posted @ 2014-12-22 16:45 action爱生活 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 1.1 hitTest:withEvent这个函数返回触摸事件发生时,触摸点所在的view。函数执行原理如下假如用户点击了View E,下面介绍hit-test view的流程1、A是UIWindow的根视图,因此,UIWindwo对象会首相对A进行hit-test;2、显然用户点击的范围是在A的范... 阅读全文
posted @ 2014-12-08 14:24 action爱生活 阅读(136) 评论(0) 推荐(0) 编辑
摘要: (一) 暗时间1)利用零碎的时间进行思考和推理。2)保持专注,任务切换说话的时间比你想象的要多很多。3)学习成果 = 投入时间 * 效率 阅读全文
posted @ 2014-11-14 13:33 action爱生活 阅读(112) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h"#define N 5main(){ int n,i,j,m=1; int a[N][N]={0};//定义螺旋数组,并初始化 //螺旋数组的实现 for(n=0;n=n; j--) a[N-n-1][j] = m++; for(i=N-n-2; i>n; ... 阅读全文
posted @ 2014-04-02 10:10 action爱生活 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 1.输入一个字符串,将其逆序后输出。(使用C++,不建议用伪码)#include using namespace std;void main(){ char a[50];memset(a,0,sizeof(a)); int i=0,j; char t; cin.getline... 阅读全文
posted @ 2014-03-31 17:55 action爱生活 阅读(214) 评论(0) 推荐(0) 编辑
摘要: Singleton.cpp/******************************************************************************Module: Singleton.cppNotices: Copyright (c) 2008 Jeffrey R... 阅读全文
posted @ 2014-03-25 10:13 action爱生活 阅读(320) 评论(0) 推荐(0) 编辑
摘要: /* * Helper function to read the content of a file into a buffer * avoids incompatible systemcalls */static void *read_file(FILE *fp, size_t *o_filele... 阅读全文
posted @ 2014-03-10 18:30 action爱生活 阅读(152) 评论(0) 推荐(0) 编辑
摘要: C语言的静态函数当一个源程序由多个源文件组成时,根据函数能否被其它源文件中的函数调用,将函数分为内部函数和外部函数。1内部函数(又称静态函数)如果在一个源文件中定义的函数,只能被本文件中的函数调用,而不能被同一程序其它文件中的函数调用,这种函数称为内部函数。定义一个内部函数,只需在函数类型前再加一个... 阅读全文
posted @ 2014-03-10 18:26 action爱生活 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 1、事务、数据库访问级别、脏读、幻读、不可重复读http://www.cnblogs.com/CareySon/archive/2012/01/29/2331088.html 阅读全文
posted @ 2014-02-26 17:39 action爱生活 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 1、作用:防止名字冲突。一个命名空间是一个作用域.2、定义: namespace cplusplus_primer { class Sales_item { /* ... */}; Sales_item operator+(const Sales_item&, ... 阅读全文
posted @ 2014-02-26 11:38 action爱生活 阅读(151) 评论(0) 推荐(0) 编辑