- 授权协议: GPLv2
- 开发语言: C/C++
- 操作系统: Linux
- 软件首页: http://nopedotc.com/
- 软件文档: http://nopedotc.com/documentation
- 官方下载: http://nopedotc.com/download
软件介绍
nope.c 是一个超轻量级的平台,用来创建轻量快速和可伸缩的网络应用。
示例代码:
#include "server.h"
#include "nopeutils.h"
void factor(int client,const char * reqStr, const char * method);
void server(Request request)
{
routefh(request,"/factor",&factor);
}
void factor(int client,const char * reqStr, const char * method) {
char *nStr=HSCANIT(client,reqStr,"Number to factor:");
if (strcmp(nStr,UNDEFINED)!=0) {
long n = strtol(nStr,NULL,10);
nprintf(client,"Factors of %li are: ", n);
long l;
for(l=2;l<=n;++l) {
if(n%l==0) {
nprintf (client,"%li ",l);
}
}
}
}
大象无形:虚幻引擎程序设计浅析
罗丁力、张三 / 电子工业出版社 / 2017-4 / 65
《大象无形:虚幻引擎程序设计浅析》以两位作者本人在使用虚幻引擎过程中的实际经历为参考,包括三大部分:使用C++语言进行游戏性编程、了解虚幻引擎本身底层结构与渲染结构、编写插件扩展虚幻引擎。提供了不同于官方文档内容的虚幻引擎相关细节和有效实践。有助于读者一窥虚幻引擎本身设计的精妙之处,并能学习到定制虚幻引擎所需的基础知识,实现对其的按需定制。 《大象无形:虚幻引擎程序设计浅析》适合初步了解虚幻......一起来看看 《大象无形:虚幻引擎程序设计浅析》 这本书的介绍吧!
