-
C程序设计的PPT文档,比较基础全面,适合初学者学习
C程序设计的PPT文档,比较基础全面,适合初学者学习-C Programming PPT document to compare the basis of a comprehensive, suitable for beginners to learn
- 2022-01-27 14:35:00下载
- 积分:1
-
PLC example. Mainly industrial control systems. Ladder design code. Is very rich...
PLC例子.主要是工业控制系统.梯形图的设计代码.内容很丰富-PLC example. Mainly industrial control systems. Ladder design code. Is very rich in contents
- 2022-01-26 01:08:03下载
- 积分: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
-
这本是sql编程必不可少的书籍,一般问题都能解决
这本是sql编程必不可少的书籍,一般问题都能解决-this sql programming is essential to the books, the general problems can be solved
- 2023-05-05 22:45:03下载
- 积分:1
-
一个非常好的串口程序
一个非常好的串口程序-a very good Serial procedures
- 2022-05-14 03:58:54下载
- 积分:1
-
template实例 可以测试编译器支持的标准程度,g++和borland c++编译器都能通过...
template实例 可以测试编译器支持的标准程度,g++和borland c++编译器都能通过-template examples can test the compiler to support the standard, g and borland c compiler can be accessed through the
- 2022-03-06 01:52:10下载
- 积分:1
-
从实用的角度详细介绍了RS纠错编码原理及其实现方法
从实用的角度详细介绍了RS纠错编码原理及其实现方法-From the practical point of view described in detail the principle of RS error-correcting code and its implementation
- 2022-04-30 08:29:27下载
- 积分:1
-
得到多大的
得到多大的-be much unnoticed
- 2023-04-28 13:40:03下载
- 积分:1
-
c# write a Gobang game, the more beautiful interface, while the computer
c#写的一个五子棋游戏,界面比较漂亮,同时电脑的智能也不低,可以和电脑挑几局-c# write a Gobang game, the more beautiful interface, while the computer
- 2022-02-24 17:34:50下载
- 积分:1
-
A generic list of one
一个通用单向循环链表管理程序,有了它,无论你的应用程序里要处理多少种类的单向循环链表,都可以用它轻松实现链表节点的添加、删除、排序等操作-A generic list of one-way cycle management process, with it, no matter where your application to deal with the number of types of one-way circulation list, you can use it to easily add nodes list, delete, sort, such as operation
- 2022-06-29 15:35:07下载
- 积分:1