登录
首页 » Process-Thread » 聊天和支持下载等的客户端,多线程的实现方法,可以处理文件的上载下载更新信息...

聊天和支持下载等的客户端,多线程的实现方法,可以处理文件的上载下载更新信息...

于 2022-04-15 发布 文件大小:2.84 kB
0 73
下载积分: 2 下载次数: 1

代码说明:

聊天和支持下载等的客户端,多线程的实现方法,可以处理文件的上载下载更新信息-Chat and support for downloading the client, multi-threaded implementations, can handle the file upload to download updates

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

发表评论


0 个回复

  • windows用delphi监视进程运行
    windows用delphi监视进程运行-windows monitors the advancement with delphi to move
    2022-05-07 06:10:44下载
    积分:1
  • mArticleFree Version 2.0 (夜猫文章管理系统免费版) ymArticle 功能列表: 1. 可支持用户组功能, 可按不同用户组设定各类权...
    mArticleFree Version 2.0 (夜猫文章管理系统免费版) ymArticle 功能列表: 1. 可支持用户组功能, 可按不同用户组设定各类权限 2. 支持JS调用某类别或所有类别的最新/最热门文章 3. 支持手工分页, 分页只需在文章中插入 [page] 代码 4. 支持搜索功能 4. 支持相关文章功能 5. 后台WEB管理 6. 可统计今日浏览和总浏览数 7. 支持BB代码, HTML 8. 更多功能无法一一列出... -mArticleFree Version 2.0 (Night Cat article management system free version) ymArticle function list : 1. Supports user group functions, users can set various competence Group 2. JS support of a certain category or call all categories of the latest/3 most popular articles. Paging support manual , tab only inserted in the article [page] code 4. four search function support. support functions related article 5. background WEB management 6. Statistics available today for browsing and total View 7. support BB code, HTML 8. more features not spell them out .. .
    2022-03-14 22:57:25下载
    积分:1
  • 掌握CDC的文字处理程序的编写,如何产生自定义字体和自定义插入符,熟悉对CString类的使用。通过对卡拉OK程序的编写,讲解定时器的使用和DrawText函数...
    掌握CDC的文字处理程序的编写,如何产生自定义字体和自定义插入符,熟悉对CString类的使用。通过对卡拉OK程序的编写,讲解定时器的使用和DrawText函数的巧妙运用。讲解如何使用CDC的裁减功能。-grasp of word processing procedures for the preparation, how to customize fonts and custom insert website. redeem familiar with the right kind of use. By karaoke program, the timer on the use and DrawText function cleverly use. CDC on how to use the reduction of function.
    2022-04-21 05:09:36下载
    积分:1
  • 窗口多线程编程最基本的介绍实例
    windows多线程编程最基础的入门例子-windows multithreaded programming most basic introductory examples
    2022-02-24 13:50:42下载
    积分:1
  • 多线程利用windowsapi函数实现同步
    多线程利用windowsapi函数实现同步-multithreading function using synchronized windowsapi
    2022-01-24 15:57:30下载
    积分:1
  • 用高级语言编写和调试一个进程调度程序,以加深对进程的概念及进程调度算法的理解。...
    用高级语言编写和调试一个进程调度程序,以加深对进程的概念及进程调度算法的理解。-High-level language by writing and debugging a process scheduler in order to deepen their understanding of the concept of the process and understanding the process of scheduling algorithm.
    2022-02-21 12:04:42下载
    积分:1
  • 本程序模拟进程管理,类似windows里的进程管理界面,但是只是模拟各种状态的转换以及cpu的分配,有利于在学习os时对进程加深理解...
    本程序模拟进程管理,类似windows里的进程管理界面,但是只是模拟各种状态的转换以及cpu的分配,有利于在学习os时对进程加深理解-the simulation process management, and similar windows Lane process management interface, but only to simulate a state of the allocation of cpu is conducive to the learning process right when os deepen understanding
    2022-03-22 19:59:43下载
    积分:1
  • 这是网络仿真中DSDV的最新研究成果,希望给你帮住。
    这是网络仿真中DSDV的最新研究成果,希望给你帮住。-This is DSDV network simulation of the latest research results, hoping to help you live.
    2022-03-14 11:29:40下载
    积分:1
  • 网络聊天工具,多线程,按钮的润色,背景色的设定
    网络聊天工具,多线程,按钮的润色,背景色的设定-Chat internet
    2022-09-04 04:45:03下载
    积分:1
  • the NT environment hidden process, the user is unaware of the conditions, the im...
    在NT环境下隐藏进程,也就是说在用户不知情的条件下,执行自己的代码的方法有很多种,比如说使用注 册表插入DLL,使用Windows挂钩等等。其中比较有代表性的是Jeffrey Richer在《Windows核心编程》中 介绍的LoadLibrary方法和罗云彬在《Windows环境下32位汇编语言程序设计》中介绍的方法。两种方法的 共同特点是:都采用远程线程,让自己的代码作为宿主进程的线程在宿主进程的地址空间中执行,从而达 到隐藏的目的。相比较而言,Richer的方法由于可以使用c/c++等高级语言完成,理解和实现都比较容易 ,但他让宿主进程使用LoadLibrary来装入新的DLL,所以难免留下蛛丝马迹,隐藏效果并不十分完美。罗 云彬的方法在隐藏效果上绝对一流,不过,由于他使用的是汇编语言,实现起来比较难(起码我写不了汇 编程序:))。笔者下面介绍的方法可以说是对上述两种方法的综合:采用c/c++编码,实现完全隐藏。并 且,笔者的方法极大的简化了远程线程代码的编写,使其编写难度与普通程序基本一致。-the NT environment hidden process, the user is unaware of the conditions, the implementation of their code There are various ways, for instance, the use of the registry into DLL, etc. linked to the use of Windows. The more representative Jeffrey Richer is the "core Windows programming" introduced by the LoadLibrary method and the Luo Bin, "under Windows 32 assembly language programming" introduced by the method. Two methods are common features are : remote threads are used to keep the code as host process threads in t
    2022-03-23 05:27:10下载
    积分:1
  • 696518资源总数
  • 104881会员总数
  • 38今日下载