HessianD
- 授权协议: 未知
- 开发语言: D语言
- 操作系统: 未知
- 软件首页: http://www.dsource.org/projects/hessiand
软件介绍
HessianD 是一个用 D 语言实现 Hessian 协议的库。
示例代码:
import hessian.HttpProxy :
HttpProxy;
import tango.io.Stdout;
void main ()
{
// create a Http proxy on the given Http endpoint so we can post our Hessian stream
scope service = new HttpProxy(" http://localhost:5667/test/hessiantest");
// create a proxy method that will do the Hessian serialization and deserialization
auto echo = &service.proxy!(api.echo);
// we'll perform the remote call and display the result
Stdout ("Remote result: ") ( echo("Hello World!") ).newline.flush;
}
计算机程序设计艺术卷1:基本算法(英文版.第3版)
Donald E.Knuth / 人民邮电出版社 / 2010-10 / 119.00元
《计算机程序设计艺术》系列著作对计算机领域产生了深远的影响。这一系列堪称一项浩大的工程,自1962年开始编写,计划出版7卷,目前已经出版了4卷。《美国科学家》杂志曾将这套书与爱因斯坦的《相对论》等书并列称为20世纪最重要的12本物理学著作。目前Knuth正将毕生精力投入到这部史诗性著作的撰写中。想了解本书最新信息,请访http://www-cs-faculty.stanford.edu/~knut......一起来看看 《计算机程序设计艺术卷1:基本算法(英文版.第3版)》 这本书的介绍吧!
