http://blog.csdn.net/ly21st http://ly21st.blog.chinaunix.net
发布时间:2014-05-08 17:30:47
#include <iostream>using namespace std; struct _A; struct _B; typedef void (*dealloc)(struct _A *a); typedef struct _A { int i; dealloc b;}A; void free_used_b(struct _A *a){ delete a;} int main(){ cout<<"hello,world"<<endl; for (size_t i=0.........【阅读全文】
发布时间:2014-05-08 14:43:26
Python使用Twisted总结 本篇文章来源于 Linux公社网站(www.linuxidc.com) 原文链接:http://www.linuxidc.com/Linux/2012-05/61402.htm 最近一直想把Python的Twisted框架好好学习学习,但苦于在生产环境中没有实际的应用,参考网上关于Twisted系列教程,决定深入学习下。Twisted起源于一款游戏,.........【阅读全文】