Windows下Objective-C環境搭建教程是本文要介紹的內容,主要是在windows平台下搭建Objective-C開發環境,具體內容來看本文詳解。
1.安裝4個檔案,直接找我要吧
2、測試:
安裝完成後,進入"開始-程式-GNUstep-Shell",出現的視窗就是shell 視窗,就可以進行編輯vi/vim)和編譯gcc) object-C代碼了。
這個shell的預設路徑是 \home\<username>,例如,我的是 /home/samsung/。
另外,我直接用devc++,UE等編輯軟體編輯程式,放在/home/samsung/下,進行編譯和運行。
下面是My Code和運行結果:
hello.m的源碼:
- #import <stdio.h>
- int main(int argc,const char *argv[]){
- printf("hello world\n");
- return 0;
- }
編譯運行:
- samsung@coco ~
- $ gcc hello.m
- samsung@coco ~
- $ ls
- a.exe hello.m
- samsung@coco ~
- $ ./a.exe
- hello world
- samsung@coco ~
3、一個更複雜的例子:
代碼:包含3個檔案。
(1) Fraction.h:
- #import <Foundation/NSObject.h>
-
- @interface Fraction: NSObject {
- int numerator;
- int denominator;
- }
-
- -(void) print;
- -(void) setNumerator: (int) d;
- -(void) setDenominator: (int) d;
- -(int) numerator;
- -(int) denominator;
- -(void) setNumerator: (int) n ddd: (int)d;
- -(void) setNumerator: (int)n : (int)d :(int) a;
- // 這裡,有3個setNumerator函數, 是重載。
- @end
(2)Fraction.m
- #import "Fraction.h"
- #import <stdio.h>
-
- @implementation Fraction
- -(void) print {
- printf( "%i/%i", numerator, denominator );
- }
-
- -(void) setNumerator: (int) n {
- nnumerator = n;
- }
-
- -(void) setDenominator: (int) d {
- ddenominator = d;
- }
-
- -(int) denominator {
- return denominator;
- }
-
- -(int) numerator {
- return numerator;
- }
-
- -(void) setNumerator: (int) n ddd: (int)d {
- nnumerator = n;
- ddenominator = d;
- }
- -(void) setNumerator: (int)n : (int)d :(int) a {
- nnumerator = n;
- ddenominator = d;
- printf("+++++a = %d +++ \n", a);
- }
- @end
(3) main.m
- #import <stdio.h>
- #import <Foundation/Foundation.h>
- #import "Fraction.h"
-
- int main( int argc, const char *argv[] ) {
- // create a new instance
- Fraction *frac = [[Fraction alloc] init];
-
-
- int x;
- int y;
-
- // set the values
- [frac setNumerator: 1];
- [frac setDenominator: 3];
-
- // print it
- printf( "The fraction is: " );
-
- [frac print];
- printf( "\n\n" );
- NSLog(@"hello world!!!\n"); // ok
-
- [frac setNumerator:34 ddd: 98];
-
- [frac print];
- printf( "\n\n" );
- NSLog(@"hello world world!!!\n"); // ok
-
- [frac setNumerator:44 : 55 :66]; // ok
- [frac print];
- printf( "\n\n" );
-
- scanf("%d %d", &x,&y); //scanf 函數的測試,ok
-
- [frac setNumerator: x ddd: y]; //ok
- [frac print];
- // free memory
- [frac release];
- // [frac release]; //前面已經release了,所以這裡發生異常:程式崩潰。
- //即對null 指標進行release,當然不允許了。
- return 0;
- }
編譯方法:
(1)將main.m編譯成main.o :
- gcc -fconstant-string-class=NSConstantString -c main.m -I /GNUstep/System/Library/Headers
2) 將Fraction.m編譯成Fraction.o :
- gcc -c Fraction.m -I /GNUstep/System/Library/Headers
3) 將.o編譯成可執行程式,名為main(最後產生的是main.exe)
- gcc -o main main.o Fraction.o -L /GNUstep/System/Library/Libraries/ -lobjc -lgnustep-base
注意:這時會有warning出現,但可以不用管它,畢竟,我們的可執行程式已經編譯出來了.
運行結果:
- samsung@coco ~/objc/fraction
- $ ./main.exe
- The fraction is: 1/3
-
- 2010-08-13 16:29:01.515 main[1212] hello world!!!
- 34/98
-
- 2010-08-13 16:29:01.515 main[1212] hello world world!!!
- +++++a = 66 +++
- 44/55
-
- 22 33
- 22/33
-
- samsung@coco ~/objc/fraction
4、總結:
1、使用者也可以使用cygwin+ GNUstep來進行開發;
2、Objective-C是以m為尾碼的,用GNU GCC來編譯;
3、整個環境和linux差不多;
小結:Windows下Objective-C環境搭建教程的內容介紹完了,希望通過本文的學習能對你有所協助!