标签:android style blog http color io os 使用 ar
———Java培训、Android培训、iOS培训、.Net培训、期待与您交流! ———
1、多个.m文件的开发
跟C语言中多个.c文件的开发是一样
(1)编写3个文件
one.m 代码如下:
1 //将two.h头文件拷贝至此
2 #import "two.h"
3 int main(int argc, const char * argv[])
4 {
5 //调用test函数
6 test();
7 return 0;
8 }
two.h 代码如下:
1 //test函数的声明
2 void test();
two.m 代码如下:
1 //因为使用了NSLog函数,所以将Foundation/Foundation.h拷贝至此
2 #import <Foundation/Foundation.h>
3 //test函数的定义(实现)
4 void test()
5 {
6 NSLog(@"调用了test函数!");
7 }
(2)终端指令
这里必须同时链接 one.o 和 two.o文件
(3)程序分析:
两个.o文件必须同时进行链接,因为one.m缺少test函数的定义,two.m缺少main函数的定义
标签:android style blog http color io os 使用 ar
原文地址:http://www.cnblogs.com/xdl745464047/p/3995738.html