登录
首页 » Windows开发 » java设计模式源码

java设计模式源码

于 2022-02-27 发布 文件大小:360.69 kB
0 179
下载积分: 2 下载次数: 1

代码说明:

里面包含很多设计模式源码,对于很多初学设计模式的人有着很大的帮助。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • This tutorial is concerned with applications of information theory concepts in...
    This tutorial is concerned with applications of information theory concepts in statistics. It originated as lectures given by Imre Csisz´ ar at the University of Maryland in 1991 with later additions and corrections by Csisz´ ar and Paul Shields.
    2022-02-04 11:26:44下载
    积分:1
  • 这是一个接口实验得小程序 就是将模拟信号转化成数字信号 引用8255a模块...
    这是一个接口实验得小程序 就是将模拟信号转化成数字信号 引用8255a模块-interface experimental procedure is too low to analog signals into digital signals used 8255a module
    2022-04-11 04:03:57下载
    积分:1
  • Packaging a baked
    EVC环境下封装一个烤屏函数,此函数用于抓取屏幕并保存为位图。-Packaging a baked-screen function, the function used to capture screen and save it as a bitmap.
    2022-08-15 00:37:20下载
    积分:1
  • Description: 对整型有序关键码序列进行折半查找,待排序序列以数组存储。如果找到待查记录,返回找到的位置下标,并删除该关键码记录;如果没找到待查记...
    Description: 对整型有序关键码序列进行折半查找,待排序序列以数组存储。如果找到待查记录,返回找到的位置下标,并删除该关键码记录;如果没找到待查记录,返回0,并将待查记录插入到适当位置,即该查找属于动态查找。输出查找过程中每一轮的low,mid,high 值,以及与给定值相比较的关键码值,并输出最后找到的位置,及变化后的数组。 注意:该数组为整型,数组中关键码存储位置为r[1]~r[n],r[0]留作它用,且关键码个数大于4. Input Format: 第一行输入数组中记录个数n 第二行输入n个有序的整型关键码,以空格隔开 接下来输入三个待查关键码,每个关键码占一行 Output format: 对于每个关键码,分别输出: 找到给定值之前的每一轮的low,mid,high及相比较的待查找序列中的关键码,以空格隔开 接下来一行输出查找到的位置 接下来一行输出变化后的待查找序列 -Description: The key codes for integers ordered sequence of binary search until the sorting sequence to an array of storage. If you find a complete set of records, returns to find the location of the next standard, and delete the key code is recorded if not find a complete set of records, returns 0, and a complete set of records inserted into the appropriate location, that is, the search was part of search. Find out the process for each one of the low, mid, high value, as well as compared to the value given the key code value and output of the last to find the locat
    2023-05-15 19:40:03下载
    积分:1
  • 可以实现位图和文字滚动的漂亮效果,利用CStatic派生和定时器实现。...
    可以实现位图和文字滚动的漂亮效果,利用CStatic派生和定时器实现。-can achieve bitmap and text rolling beautiful effects, the use of derivatives and CStatic Timer.
    2022-02-14 19:18:23下载
    积分:1
  • 一个怎样使Ctrl+Alt+Del按键组合失效的方法的例子 其实现方法简单,有效,很值得借鉴...
    一个怎样使Ctrl+Alt+Del按键组合失效的方法的例子 其实现方法简单,有效,很值得借鉴-Disable Ctrl+ALT+Del keys
    2023-04-09 06:25:03下载
    积分:1
  • 文件修改监控
    ReadDirectoryChangesW 有同步和异步2种方式, 根据前面打开的文件夹对象句柄决定。  1. 异步方式,如果 CreateFile 指定了打开类型 FILE_FLAG_OVERLAPPED 就是异步方式,ReadDirectoryChangesW 调用的时候就需要指定 OVERLAPPED 参数.  接下来对文件夹I/O变化的响应判断有多种方式。  A通过不断的调用HasOverlappedIoCompleted函数(非阻塞,参数就是前面的OVERLAPPED 对象指针)的返回值来判断是否发生了 关注文件句柄的I/O操作。如果发生变化,再执行你的 switch(Buffer[0].Action) 操作过程。  B GetOverlappedResult 读取 OVERLAPPED 对象的结果。(阻塞)  C 完成端口 GetQueuedCompletionStatus (阻塞)。  其中阻塞方式,必须采用多线程的方式,否则你的主线程被阻塞的话,对话框就动不了了。非阻塞方式也可用多线程,结合hEvent对象来使用。  2.同步方式,如果CreateFile不指定FILE_FLAG_OVERLAPPED ,就是同步方式。  同步方式操作比较简单。lz的程序看来就是使用的同步方式。  在同步下,ReadDirectoryChangesW 将被阻塞,直到一个文件夹句柄的I/O操作到来,然后才能判断。所以lz的程序会死掉。  同步方式必须采用多线程,再创建一个线程,线程函数采用如下方式:  UINT ThreadProc(PVOID)  {     CreateFile();     while(1) // 如果只想监视一次文件的I/O变化,可不用while循环。     {   
    2022-03-10 05:44:52下载
    积分:1
  • 通过对一系列的 api 及 shell32.dll 的调用来实现 windows 各种标准浏览选择对话框。此源代码为 vb4 设计。对后来版本同样适用(8KB)...
    通过对一系列的 api 及 shell32.dll 的调用来实现 windows 各种标准浏览选择对话框。此源代码为 vb4 设计。对后来版本同样适用(8KB)-through the series of api and the motto call to achieve the standard browser windows various options dialog. This source code for vb4 design. Later versions of the same application (8KB)
    2022-02-09 14:42:33下载
    积分:1
  • 小波变换程序
    利用Morlet母小波对时间序列进行时频变换
    2023-08-13 23:05:03下载
    积分:1
  • MFC下的串口通信程序,使用vs2010实现
    MFC下的串口通信程序,使用vs2010实现,里面使用数组模拟一个消息队列,实现串口的收发数据。如有雷同纯属巧合。
    2022-08-16 03:59:37下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载