-
这是一个公有继承类的实例,在基类设置了一个成员函数,在其派生类中使用公有继承,详细见源程序...
这是一个公有继承类的实例,在基类设置了一个成员函数,在其派生类中使用公有继承,详细见源程序-This is a public instance of a class inheritance, in the base class set up a member function using derived class in their public inheritance, in detail see the source code
- 2022-01-24 14:05:15下载
- 积分:1
-
HHT变换的matlab程序,初学者希尔伯特
hht希尔伯特变换的matlab程序,适合初学者使用-hht Hilbert transform Matlab procedures for beginners
- 2022-03-09 11:36:40下载
- 积分:1
-
C#代码实现带查询功能的ComboBox控件
C#代码实现带查询功能的ComboBox控件,并且还可显示输入提示,在右边的列表框中输入信息,如果输入焦息与列表框中信息匹配,信息会自动显示在列表框中,用户之需选择,而不需要输入,提升操作体验。
- 2022-01-26 19:10:43下载
- 积分:1
-
C#Web server程序原码
C#Web server程序原码-C# Web server processes the original code
- 2022-05-16 07:30:34下载
- 积分:1
-
一个将Excel数据传给Access数据库的小程序
一个将Excel数据传给Access数据库的小程序-an Excel data transmission Access database small program
- 2022-03-05 08:44:50下载
- 积分:1
-
USBDEBUG is a simple operation and USB debugging tools. It can quickly and accur...
USBDEBUG是一款操作及其简单的USB调试工具软件。它能够快速准确的对USB设备进行数据的读写操作,可以实时监测从USB设备发来的数据。(目前只支持调试Philips公司的PDIUSBD12和ISP1581)
-USBDEBUG is a simple operation and USB debugging tools. It can quickly and accurately to the right USB devices for data read and write operations, real-time monitoring from a USB device to the data. (Currently only supports debugging of PDIUSBD12 Philips and ISP 1581)
- 2023-02-04 13:50:03下载
- 积分:1
-
闭区间覆盖问题,是用贪心实现的!程序很简洁啊!
闭区间覆盖问题,是用贪心实现的!程序很简洁啊!-closed interval coverage is used to achieve the greedy! Very simple procedures ah!
- 2022-01-31 16:46:35下载
- 积分:1
-
非常流行的游戏!希望你喜欢!java是用来希望它可能是我们的语言…
很受欢迎的游戏制作!
希望大家喜欢!
使用语言是java
希望对大家有用-very popular game! Hope you like! Java is the language used to hope it may be useful
- 2022-05-31 15:17:48下载
- 积分: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
-
哈夫曼编码,输入一个字符串,自动编码并输出
哈夫曼编码,输入一个字符串,自动编码并输出-Huffman coding, enter a string, automatic coding and output
- 2022-06-14 09:22:13下载
- 积分:1