找回密码
 FreeOZ用户注册
查看: 4429|回复: 3
打印 上一主题 下一主题

[Mac] 在Windows上编写Object C程序

[复制链接]
跳转到指定楼层
1#
发表于 5-8-2010 19:11:33 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?FreeOZ用户注册

x
随着iphone的流行,越来越多的程序员开始学习Object C编程,但一般来说编写Object C需要iMac计算机。这对于刚开始学习Object C编程的程序员是个问题。
本文给出了一个在 windows 平台上学习Object C编程的方法。
1.下载GNUStep
   http://ftpmain.gnustep.org/pub/gnustep/binaries/windows/
   下载
       gnustep-msys-system-x.x.x-setup.exe
       gnustep-core-x.x.x-setup.exe
       gnustep-cairo-x.x.x-setup.exe
       gnustep-devel-x.x.x-setup.exe
  将下载的GNUStep安装,比如C:\GNUStep
2. 下载JEdit
    http://www.jedit.org/index.php?page=download
    JEdit 是Freeware,可以用来编辑 .m 文件 .m 是Object C缺省后缀。 .m 相当于 .c 文件
3. 一个Object C教材
    http://www.otierney.net/objective-c.html
---------------------------------------------
4. 安装后,执行msys.bat 启动 GNUStep 环境 (类Linux环境)

                               
登录/注册后可看大图

5. 编写示例程序
fraction.h
  1. #import <Foundation/NSObject.h>

  2. @interface Fraction: NSObject {
  3.     int numerator;
  4.     int denominator;
  5. }

  6. -(void) print;
  7. -(void) setNumerator: (int) n;
  8. -(void) setDenominator: (int) d;
  9. -(int) numerator;
  10. -(int) denominator;
  11. @end
复制代码


fraction.m
  1. #import "fraction.h"
  2. #import

  3. @implementation Fraction
  4. -(void) print {
  5.     printf( "%i/%i", numerator, denominator );
  6. }

  7. -(void) setNumerator: (int) n {
  8.     numerator = n;
  9. }

  10. -(void) setDenominator: (int) d {
  11.     denominator = d;
  12. }

  13. -(int) denominator {
  14.     return denominator;
  15. }

  16. -(int) numerator {
  17.     return numerator;
  18. }
  19. @end
复制代码


main.m

  1. #import
  2. #import "fraction.h"

  3. int main( int argc, const char *argv[] ) {
  4.     // create a new instance
  5.     Fraction *frac = [[Fraction alloc] init];

  6.     // set the values
  7.     [frac setNumerator: 1];
  8.     [frac setDenominator: 3];

  9.     // print it
  10.     printf( "The fraction is: " );
  11.     [frac print];
  12.     printf( "\n" );

  13.     // free memory
  14.     [frac release];

  15.     return 0;
  16. }
复制代码


6. 编写Makefile
   在当前目录下创建GNUmakefile
  1. include $(GNUSTEP_MAKEFILES)/common.make

  2. TOOL_NAME = Hello
  3. Hello_OBJC_FILES = main.m fraction.m

  4. include $(GNUSTEP_MAKEFILES)/tool.make
复制代码

6. 编译程序
   $ make
  将创建 obj目录 运行  hello.exe
   The fraction is: 1/3
这样环境就搭好了,你就可以继续学习 Object C了。

[ 本帖最后由 trisun 于 5-8-2010 18:14 编辑 ]

评分

参与人数 2威望 +60 收起 理由
ubuntuhk + 30 谢谢分享!
coredump + 30 谢谢分享!

查看全部评分

回复  

使用道具 举报

2#
发表于 5-8-2010 22:21:15 | 只看该作者
好贴要顶
回复  

使用道具 举报

3#
发表于 6-8-2010 00:19:27 | 只看该作者

回复 #1 trisun 的帖子

这个应该只能学习一下Object-C的语法吧?不能在非Mac OS上写iPhone程序确实是个遗憾。
回复  

使用道具 举报

4#
 楼主| 发表于 6-8-2010 00:36:18 | 只看该作者
原帖由 ubuntuhk 于 5-8-2010 23:19 发表
这个应该只能学习一下Object-C的语法吧?不能在非Mac OS上写iPhone程序确实是个遗憾。


是的, 最终写iphone程序一般还是要Mac OS.
回复  

使用道具 举报

您需要登录后才可以回帖 登录 | FreeOZ用户注册

本版积分规则

小黑屋|手机版|Archiver|FreeOZ论坛

GMT+11, 2-11-2024 02:27 , Processed in 0.036396 second(s), 21 queries , Gzip On, Redis On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表