搜索资源列表

  1. WndCtrl_demo.zip

    0下载:
  2. 可重复使用的WNDCTRL类 这个类基本上容纳了一些隐藏的控件和窗口。一个 WndCtrl对象有两个状态, 即开和关。你必须把这个控件加到m_WndCtrl中。当WndCtrl被打开的时候,控件被创建,当WndCtrl被关闭的时候,控件被隐藏或撤销。WndCtrl将会是所有加到它上面的控件的父节点。WndCtrl可以在关闭或开着的状态下改变大小或重新定位。然而,关闭状态下的大小是静态的,不能被改变。无论大小是否被改变,都将会影响
  3. 所属分类:界面编程

    • 发布日期:2024-06-07
    • 文件大小:32118
    • 提供者:
  1. C++之父演讲

    0下载:
  2. C++之父在中国的演讲-C father's speech in China
  3. 所属分类:开发工具

    • 发布日期:2008-10-13
    • 文件大小:189698
    • 提供者:付二社
  1. 父进程与子进程

    0下载:
  2. 父进程建立两个子进程,再分别*
  3. 所属分类:Linux/Unix编程

    • 发布日期:2010-10-22
    • 文件大小:1229
    • 提供者:jalion@yeah.net
  1. VC++之随父窗口变化调整控件大小

    0下载:
  2. VC++之随父窗口变化调整控件大小
  3. 所属分类:源码下载

    • 发布日期:2011-03-13
    • 文件大小:25577
    • 提供者:gmc1985@163.com
  1. C++之父演讲

    0下载:
  2. C++之父在中国的演讲-C father's speech in China
  3. 所属分类:电子书籍

    • 发布日期:2024-06-07
    • 文件大小:189440
    • 提供者:付二社
  1. 实验二302_22

    0下载:
  2. 使用系统调用fork()创建两个子进程。当此程序运行时,在系统中有一个父进程和两个子进程活动。让每一个进程在屏幕上现实一个字符:父进程显示字符’a’;子进程分别显示字符’b’和’c’。试观察记录屏幕上的显示结果并分析原因。-use system calls fork () to create two child process. When running, the system is a process and the father o
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-06-07
    • 文件大小:10240
    • 提供者:杨宇文
  1. printTree

    0下载:
  2. 打印windows进程树(用以测试 windows的子进程ID是否一定大于父进程ID)-Print windows process tree (a subset of windows to test whether the process ID greater than the parent process ID)
  3. 所属分类:Windows编程

    • 发布日期:2024-06-07
    • 文件大小:7168
    • 提供者:shi
  1. forkfunc

    0下载:
  2. fork函数注意点: 1,与IO的缓冲机制! 2,vfork与fork的不同:1,子进程先与父进程运行,2,子进程在父进程空间运行-fork Function NOTE points: 1, and IO buffer mechanism! 2, vfork and fork of the difference: 1, sub-processes to run first with the parent process, 2,
  3. 所属分类:Windows编程

    • 发布日期:2024-06-07
    • 文件大小:1024
    • 提供者:余天
  1. createpc

    0下载:
  2. 用于进程创建模拟实现,进程的树形结构采用广义二叉树的方式进行存储。可以输入createpc 命令创建进程,输入showdetail 显示每个 进程及其子进程的信息,测试命令解释如下: 1) createpc 创建进程命令。 参数: 1 pid(进程id)、 2 ppid(父进程id)、3 prio(优先级)。 示例: createpc(2,1,2) 。创建一个进程,其进程号为2,父进程号为1,优先级 为2。 2)
  3. 所属分类:Windows编程

    • 发布日期:2024-06-07
    • 文件大小:2048
    • 提供者:height
  1. pipe

    0下载:
  2. 进程间通信的一直方式,采用管道,此处用的是匿名管道,即子进程与父进程间的通信-Inter-process communication methods have been used pipe, used here is the anonymous pipe, that is, the child process and parent inter-process communication
  3. 所属分类:进程与线程

    • 发布日期:2024-06-07
    • 文件大小:3761152
    • 提供者:yuanzi
  1. threecodes

    9下载:
  2. 1、 用C语言写一个程序名字为procs4,该程序运行过程中共有4个进程,procs4程序(父进程)创建2个子进程p1和p2,p1子进程再创建一个子进程p3。4个进程完成如下工作: 父进程并打印字符串“I am main process”;p1子进程打印“I am child process p1”字符串;p2子进程打印“I am child process p2”;子进程p3打印字符串“I am child process p3”
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-06-07
    • 文件大小:2048
    • 提供者:杨子坤
  1. osruanzhongduan

    0下载:
  2. 操作系统实验 进程软中断通信 编写一段程序,父进程创建一个子进程p1;并使子进程利用系统调用kill()向父进程发送信号,父进程得到信号后输出字符串“received p1 signal.” 。 -Experimental process, the operating system write a soft interrupt communication procedures, the parent creates a child pr
  3. 所属分类:操作系统开发

    • 发布日期:2024-06-07
    • 文件大小:31744
    • 提供者:董俐
  1. 1

    0下载:
  2. 主题:进程的管道通信 内容:这是一个设计型实验,要求自行编制程序。 使用系统调用pipe()建立一条管道,两个子进程分别向管道写一句话: Child process1 is sending a message! Child process2 is sending a message! 父进程从管道读出来自两个子进程的信息,显示在屏幕上。 要求: 1) 父进程先接收子进程1发来的消息,然后再接收子进程2发
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-06-07
    • 文件大小:8192
    • 提供者:小斧子
  1. 将外部程序运行于本身窗口内部实现自由移动

    0下载:
  2. 子窗口嵌入父窗口,外部e x e文件嵌入窗口使用(The child window is embedded in the parent window, and the outer E X E file is inserted into the window)
  3. 所属分类:其他小程序

    • 发布日期:2024-06-07
    • 文件大小:4096
    • 提供者:1714625947
  1. MessageBoxCenterMain

    0下载:
  2. 本工程使用工具为VS2010,实现消息框在父窗口居中,而不是屏幕居中。(This project uses the tool VS2010, the message box in the father window center, rather than the screen center.)
  3. 所属分类:C#编程

    • 发布日期:2024-06-07
    • 文件大小:53248
    • 提供者:asemarece
  1. 继承

    0下载:
  2. 子类对父类的覆盖,向上转型,子类的继承。(The subclass is overlaid with the parent class, and the subclass is inherited.)
  3. 所属分类:其他小程序

    • 发布日期:2024-06-07
    • 文件大小:4096
    • 提供者:悟世伤时
  1. 父类构造器

    0下载:
  2. 这里需要注意:子类没有声明任何构造器;编译器为子类加的缺省构造器一定为无参数的构造器;父类一定要存在一个无参数的构造器(It is important to note that the subclass does not declare any constructors. The default constructor added by the compiler for the subclass must be a parameter
  3. 所属分类:其他小程序

    • 发布日期:2024-06-07
    • 文件大小:6144
    • 提供者:hais-373
  1. bianchengzhilvPython

    0下载:
  2. 《父与子的编程之旅-与小卡特一起学Python》是一本家长与孩子共同学Python编程的入门书。作者是一对父子,他们以Python语言为例,详尽细致地介绍了Python如何安装、字符串和操作符等程序设计的基本概念,介绍了条件语句、函数、模块等进阶内容,最后讲解了用Python实现游戏编程。书中的语言生动活泼,叙述简单明了。为了让学者觉得编程有趣,作者编排了很多卡通人物及场景对话,让学编程者在轻松愉快之中跨入计算机编程的大门。 《父
  3. 所属分类:其他小程序

    • 发布日期:2024-06-07
    • 文件大小:23034880
    • 提供者:述说
  1. exm

    0下载:
  2. 《MATLAB之父 编程实践 中译本》随书源码("Father of MATLAB programming practice Chinese version" with book source)
  3. 所属分类:其他小程序

    • 发布日期:2024-06-07
    • 文件大小:1163264
    • 提供者:liubin-
  1. 父窗口操作

    0下载:
  2. 一个父窗口操作的例程,供新手学习研究使用。 Win下的“管理”类似于此思路。(A parent window operation routine for newcomers to learn and use. The "management" under Win is similar to this idea.)
  3. 所属分类:易语言编程

« 12 3 4 5 6 7 8 9 10 ... 50 »

源码中国 www.ymcn.org