多平台运行 Objective-C 新方法 mulle-objc

码农软件 · 软件分类 · iPhone/iPad开发工具 · 2019-04-29 13:42:03

软件介绍

mulle-objc 是一种在多平台运行 Objective-C 的新方法,它基于一个新的编译器和一个新的运行环境。

mulle-objc 的目标:

  • 可以运行在C运行的任何地方

  • 比别人更快

  • 没有必要的汇编代码

  • 运行时完全不需要预加载

  • 实例不应交叉

  • 可以运行在实时的应用上

  • 保持C的精神

示例代码:

cat <<EOF > hello-world.aam
#import <MulleObjC/MulleObjC.h>
@implementation Foo : NSObject
- (void) print
{
   printf( "Hello World\n");
}
@end
int  main( int argc, char *argv[])
{
   Foo  *foo;
   foo = [Foo new];
   [foo print];
   return( 0);
}
EOF

本文地址:https://codercto.com/soft/d/4643.html

Introduction to the Design and Analysis of Algorithms

Introduction to the Design and Analysis of Algorithms

Anany Levitin / Addison Wesley / 2006-2-24 / USD 122.00

Based on a Based on a new classification of algorithm design techniques and a clear delineation of analysis methods, "Introduction to the Design and Analysis of Algorithms" presents the subject in a c......一起来看看 《Introduction to the Design and Analysis of Algorithms》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具