多平台运行 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://www.codercto.com/soft/d/4643.html

Algorithms for Image Processing and Computer Vision

Algorithms for Image Processing and Computer Vision

Parker, J. R. / 2010-12 / 687.00元

A cookbook of algorithms for common image processing applications Thanks to advances in computer hardware and software, algorithms have been developed that support sophisticated image processing with......一起来看看 《Algorithms for Image Processing and Computer Vision》 这本书的介绍吧!

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

多种字符组合密码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

SHA 加密
SHA 加密

SHA 加密工具