- 授权协议: 未知
- 开发语言: C/C++
- 操作系统: UNIX
- 软件首页: http://codesink.org/mimetic_mime_library.html
- 软件文档: http://codesink.org/data/mimetic/docs/html/index.html
软件介绍
mimetic 是一个 C++ 的类库,用来处理 MIME 数据。
示例代码:
#include <iostream>
#include <mimetic/mimetic.h>
using namespace std;
using namespace mimetic;
int main()
{
MimeEntity me;
me.header().from("me <me@domain.com>");
me.header().to("you <you@domain.com>");
me.header().subject("my first mimetic msg");
me.body().assign("hello there!");
cout << me << endl;
return 0;
}
Effective Objective-C 2.0
Matt Galloway / 爱飞翔 / 机械工业出版社 / 2014-1 / 69.00元
《effective objective-c 2.0:编写高质量ios与os x代码的52个有效方法》是世界级c++开发大师scott meyers亲自担当顾问编辑的“effective software development series”系列丛书中的新作,amazon全五星评价。从语法、接口与api设计、内存管理、框架等7大方面总结和探讨了objective-c编程中52个鲜为人知和容易被忽......一起来看看 《Effective Objective-C 2.0》 这本书的介绍吧!
