摘要:
阅读全文
摘要:
//// ViewController.m// 表格的修改//// Created by YaguangZhu on 15/8/16.// Copyright (c) 2015年 YaguangZhu. All rights reserved.//#import "ViewControlle... 阅读全文
摘要:
资料:汽车图片 和plist文件:两个模型//// Car.h// 汽车品牌//// Created by YaguangZhu on 15/8/16.// Copyright (c) 2015年 YaguangZhu. All rights reserved.//#import @inte... 阅读全文
摘要:
素材:图片库和一个英雄资料的plist文件:一个英雄数据封装的模块//// Hero.h// 多组表格//// Created by YaguangZhu on 15/8/13.// Copyright (c) 2015年 YaguangZhu. All rights reserved.//... 阅读全文
摘要:
工作与梦想中的工作:给计算机专业学生的建议http://blog.jobbole.com/13782/我最近参加了 Big Ivy University (BIU)的招聘会,和大约50位计算机专业的本科生交谈过。他们希望能到我的公司 10gen 来实习或者正式工作。我确信他们之中有很聪明的,但是他们... 阅读全文
摘要:
#include #include "stdlib.h"#define MAX(X,Y)(((X)>(Y))?(X):(Y))#define MAX(X,Y)(((X)<(Y))?(X):(Y))#define SQR(X) (X*X)#define DEBUGint main(){ int ... 阅读全文
摘要:
//// main.cpp// test//// Created by YaguangZhu on 15/6/25.// Copyright (c) 2015年 YaguangZhu. All rights reserved.//#include #include "stdlib.h"#de... 阅读全文
摘要:
新建一个模块(类),类似于javabean//// HMStudent.h// 表格控件//// Created by YaguangZhu on 15/8/13.// Copyright (c) 2015年 YaguangZhu. All rights reserved.//#import... 阅读全文
摘要:
监听控件的某些事件使用代理模式,是为了在程序直接"解耦"表格可以显示非常丰富的数据,为了达到这一效果,设置表格的"数据源"@required 必须实现的方法@optional 可选的实现方法->不强求实现->如果实现了能得到特殊的效果,如果不实现,也不影响程序的正常运行 能够增加控件的灵活度代理阶... 阅读全文
摘要:
#include char getChar(int x,int y){ char c; unsigned int a = x; (a+y>10)?(c=1):(c=2); return c;}int main(){ char c1 = getChar(7, 4); ... 阅读全文