-
Sun J2EE 宠物店(包括源代码及参考书)
Sun J2EE 宠物店(包括源代码及参考书)-Sun J2EE pet shops (including source code and reference books)
- 2022-10-03 21:35:04下载
- 积分:1
-
C++俄罗斯方块源代码,不过是用画图的方法写出来的
用ncurses.h写的一个俄罗斯方块游戏,不过只是代码加makefile 在命令行里面可以先简单试一下,主要是让人们能看懂俄罗斯方块游戏设计的原理。这个本来是我们上C++课老师留的作业,刚开始我也是没有任何思路,后来找了很多俄罗斯方块源代码也没有用ncurses.h来写的,所以我觉得发一个,虽然很简单,但难免以后也会有人需要
- 2022-06-15 15:59:53下载
- 积分:1
-
linux常用命令手册,对于linux初学者很适用
linux常用命令手册,对于linux初学者很适用-linux commands
- 2022-07-08 08:47:10下载
- 积分:1
-
神经网络的应用,强大的非线性映射能力,进行凸轮…
利用神经网络强大的非线性映射能力来进行摄像机的标定,这里提供了许多这方面的论文资料。-The use of neural networks a powerful nonlinear mapping ability to carry out camera calibration, here are a lot of papers in this regard the information.
- 2022-01-25 16:17:17下载
- 积分:1
-
C wrote a small academic management system for others to write a curriculum desi...
用C写的一个小教务管理系统为别人写的一个课程设计-C wrote a small academic management system for others to write a curriculum design
- 2022-01-28 00:47:28下载
- 积分:1
-
教你如何简单显示一章TIFF位图,分析的很透彻,很适合出学者.希望能给你带来帮助!...
教你如何简单显示一章TIFF位图,分析的很透彻,很适合出学者.希望能给你带来帮助!-teach you how simple show a bitmap TIFF chapter, a very thorough analysis, very suitable to scholars. hope that they will bring you!
- 2022-02-01 23:56:32下载
- 积分:1
-
简单的FTP客户端,旨在为用户提供文件传输服务
Simple FTP client, designed to provide file transfer service to users
- 2023-03-09 22:20:03下载
- 积分:1
-
C 程序设计语言定义了两个标准的内存管理函数:malloc() 和 free()。C 程序员经常使用那些函数在运行时分配缓冲区,以便在函数之间传递数据。然而在许...
C 程序设计语言定义了两个标准的内存管理函数:malloc() 和 free()。C 程序员经常使用那些函数在运行时分配缓冲区,以便在函数之间传递数据。然而在许多场合下,您无法预先确定缓冲区所需的实际大小,这对于构造复杂的 C 程序来说,可能会导致几个根本性的问题。一种自我管理的抽象数据缓冲区概括地给出了抽象缓冲区的伪 C 代码实现,并详细介绍了采用这种机制的优点。-C programming language defines two standard memory management functions: malloc () and free (). C programmers frequently use those functions at run-time allocation of buffers in order to pass data between functions. However, in many occasions, you can not pre-determine the actual size of the buffer required, which for the complex structure of the C program, it may lead to several fundamental questions. A self-management, abstract data buffer generally gives the pseudo-C code for an abstract buffer implementation, and details the advantages of using this mechanism.
- 2022-03-11 11:19:26下载
- 积分:1
-
CoStream 无缓存 Pipe Stream
翻译 maninwest@Codeforge 作者:Sergey Nozhenko@CodeProject介绍:CoStream 是的 PipeStream 无缓存替代选择。背景在生产者/消费者模式下,如果我们知道一个消费者确定要读取stream 读到结束或者如果不能读到结束就处理,那么同步stream 就不需要维护自己的内部缓存,完全依赖于 Read 方法调用者的缓存。在Read 方法中,CoStream 保存到目标缓存的引用并等待,直至完成。而 write 方法从源缓存中复制数据到目标缓存,会给读取者发送信号缓存已准备就绪或者需要等待期 Read 调用(如果来源缓存中有未消耗的数据剩下或者返回到Writer 调用者)。使用代码CoStream 不能在单个话题中使用。应该至少有两个,读取和写入话题。两者都需要关闭(或处理)stream,一边对方可以继续到结束。测试程序在 XmlDocument 中加载了一些 xml 文件。然后将其写入到 CoStream 的实例Static CoStream costream = new TestCoStream();
static string outpath;
static void Main(string[] args)
{
// ...
XmlDocument doc = new XmlDocument();
doc.Load(args[0]);
outpath = args[1];
var reading_thread = new Thread(ReaderBody);
reading_thread.Start();
using (var pipe = XmlWriter.Create(costream, new XmlWriterSettings { CloseOutput = true }))
doc.Save(pipe);
reading_thre
- 2022-03-17 17:34:17下载
- 积分:1
-
point font
point font
- 2023-08-08 14:25:02下载
- 积分:1