搜索资源列表
WndCtrl_demo.zip
- 可重复使用的WNDCTRL类 这个类基本上容纳了一些隐藏的控件和窗口。一个 WndCtrl对象有两个状态, 即开和关。你必须把这个控件加到m_WndCtrl中。当WndCtrl被打开的时候,控件被创建,当WndCtrl被关闭的时候,控件被隐藏或撤销。WndCtrl将会是所有加到它上面的控件的父节点。WndCtrl可以在关闭或开着的状态下改变大小或重新定位。然而,关闭状态下的大小是静态的,不能被改变。无论大小是否被改变,都将会影响
C++之父演讲
- C++之父在中国的演讲-C father's speech in China
父进程与子进程
- 父进程建立两个子进程,再分别*
VC++之随父窗口变化调整控件大小
- VC++之随父窗口变化调整控件大小
C++之父演讲
- C++之父在中国的演讲-C father's speech in China
实验二302_22
- 使用系统调用fork()创建两个子进程。当此程序运行时,在系统中有一个父进程和两个子进程活动。让每一个进程在屏幕上现实一个字符:父进程显示字符’a’;子进程分别显示字符’b’和’c’。试观察记录屏幕上的显示结果并分析原因。-use system calls fork () to create two child process. When running, the system is a process and the father o
printTree
- 打印windows进程树(用以测试 windows的子进程ID是否一定大于父进程ID)-Print windows process tree (a subset of windows to test whether the process ID greater than the parent process ID)
forkfunc
- 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,
createpc
- 用于进程创建模拟实现,进程的树形结构采用广义二叉树的方式进行存储。可以输入createpc 命令创建进程,输入showdetail 显示每个 进程及其子进程的信息,测试命令解释如下: 1) createpc 创建进程命令。 参数: 1 pid(进程id)、 2 ppid(父进程id)、3 prio(优先级)。 示例: createpc(2,1,2) 。创建一个进程,其进程号为2,父进程号为1,优先级 为2。 2)
pipe
- 进程间通信的一直方式,采用管道,此处用的是匿名管道,即子进程与父进程间的通信-Inter-process communication methods have been used pipe, used here is the anonymous pipe, that is, the child process and parent inter-process communication
threecodes
- 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”
osruanzhongduan
- 操作系统实验 进程软中断通信 编写一段程序,父进程创建一个子进程p1;并使子进程利用系统调用kill()向父进程发送信号,父进程得到信号后输出字符串“received p1 signal.” 。 -Experimental process, the operating system write a soft interrupt communication procedures, the parent creates a child pr
1
- 主题:进程的管道通信 内容:这是一个设计型实验,要求自行编制程序。 使用系统调用pipe()建立一条管道,两个子进程分别向管道写一句话: Child process1 is sending a message! Child process2 is sending a message! 父进程从管道读出来自两个子进程的信息,显示在屏幕上。 要求: 1) 父进程先接收子进程1发来的消息,然后再接收子进程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)
MessageBoxCenterMain
- 本工程使用工具为VS2010,实现消息框在父窗口居中,而不是屏幕居中。(This project uses the tool VS2010, the message box in the father window center, rather than the screen center.)
继承
- 子类对父类的覆盖,向上转型,子类的继承。(The subclass is overlaid with the parent class, and the subclass is inherited.)
父类构造器
- 这里需要注意:子类没有声明任何构造器;编译器为子类加的缺省构造器一定为无参数的构造器;父类一定要存在一个无参数的构造器(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
bianchengzhilvPython
- 《父与子的编程之旅-与小卡特一起学Python》是一本家长与孩子共同学Python编程的入门书。作者是一对父子,他们以Python语言为例,详尽细致地介绍了Python如何安装、字符串和操作符等程序设计的基本概念,介绍了条件语句、函数、模块等进阶内容,最后讲解了用Python实现游戏编程。书中的语言生动活泼,叙述简单明了。为了让学者觉得编程有趣,作者编排了很多卡通人物及场景对话,让学编程者在轻松愉快之中跨入计算机编程的大门。 《父
exm
- 《MATLAB之父 编程实践 中译本》随书源码("Father of MATLAB programming practice Chinese version" with book source)
父窗口操作
- 一个父窗口操作的例程,供新手学习研究使用。 Win下的“管理”类似于此思路。(A parent window operation routine for newcomers to learn and use. The "management" under Win is similar to this idea.)