1. 编写hello.m
1 #import <Foundation/Foundation.h> 2 3 int main (int argv, const char **argc) 4 { 5 @autoreleasepool { 6 NSLog(@"Hello, world!"); 7 } 8 return 0; 9 }
2. gcc编译hello.c
gcc -framework Foundation hello.m -o hello
注意红字部分, 如果按照C语言直接 gcc hello.m -o hello 就会报错.
时间: 2024-10-08 07:25:53