- 博客(6)
- 收藏
- 关注
原创 黑马程序员_iOS_OC_继承_方法重写与覆盖
Son.h#import //导入父类的头文件 #import "Father.h" @interface Son : Father @property() char *sonName; @end Son.m #import "Son.h" @implementation Son //当从父类继承过来的方法不能满足 //子类的需求时,就需要重写也叫覆盖。 -(void)showName {
2015-11-24 10:25:58 428
原创 黑马程序员_iOS_OC_创建对象并调用函数
Student.h#import @interface Student : NSObject { //成员变量 学号 NSUInteger _no; //年龄 NSUInteger _age; } //函数声明 -(void)setNo:(NSUInteger)no; -(void)setAge:(NSUInteger)age; //带两个参数的 -(void
2015-11-24 10:01:23 316
原创 黑马程序员_iOS_C_顺序栈
#include //声明一个栈 节点 #define STACK_SIZE 100 typedef struct Node { int top;//栈顶 int array[STACK_SIZE];//容量 }Stack; Stack s;//定义了一个栈类型 //声明几个函数 //初始化一个栈 i
2015-11-24 09:56:16 209
原创 黑马程序员_iOS_C_char字符和字符集
/* 字符和字符集 1.字符类型 类型char 字符类型常量 数字 0 ~ 9 表示字符常量 '0','1','2','3'......'9' 字母 A~Z a~z 'A','B','C'...'Z','a','b','c'....'z' 标点符号 ',',';',':'等 转义字符 不可见(\n 换行 \r回车
2015-11-24 09:51:23 368
原创 黑马程序员_iOS_C_整型变量在内存中所占字节数
int main(int argc, const char * argv[]) { //标示符的 sizeof 计算某一个类型在内存中所占内存字节数 short int sa = -10; unsigned short int usa = 100; //计算短整型在内存中所占字节数 int len_s
2015-11-24 09:47:02 494
原创 黑马程序员_iOS_C_printf标准格式化输出
/* priintf()函数的使用 %d 输出10进制的整数 %o 输出8进制的整数 %x或%X 输出16进制的整数 %f或%lf 输出 f单精度 lf双精度 double %.nf 保留到小说点后几位 (n不能超过有效位数) %c 输出字符 %s 输出字符串 %p 输出指针 地址
2015-11-24 09:40:25 518
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人