-
关于定时器的使用,自己写的代码 绝对不会跟人家的重复
关于定时器的使用,自己写的代码 绝对不会跟人家的重复-With regard to the use of timers that they will not write the code duplication with others ~ ~ ~
- 2022-11-20 21:35:08下载
- 积分:1
-
利用这个源代码我们可以更深的了解关于netstat这个命令是如何工作的,这个源代码可以扫描指定网段内的主机的用户信息...
利用这个源代码我们可以更深的了解关于netstat这个命令是如何工作的,这个源代码可以扫描指定网段内的主机的用户信息-we can understand much deepper about the mechanism of NETSTAT command , this source code can scan the information of PCs in certain ip range
- 2022-04-22 17:03:33下载
- 积分:1
-
在自动点击链接源
source for click in links automaticly
- 2023-02-03 18:55:03下载
- 积分:1
-
KiWaitOutListhead,KiDispatcherReadyListHead,分别是两条阻塞链,一条就绪链表,当线程获得CPU执行的时候,系统分配一个...
KiWaitOutListhead,KiDispatcherReadyListHead,分别是两条阻塞链,一条就绪链表,当线程获得CPU执行的时候,系统分配一个时间片给线程,当发生一次时钟中断就从分配的时间片上减去一个时钟中断的值,如果这个值小于零了也就是时间片用完了,那么这个线程根据其优先级载入到相应的就绪队列末尾。KiDispatcherReadyListHead是一个数组链的头部,在windows 2000中它包含有32个队列,分别对应线程的32个优先级。如果线程因为同步,或者是对外设请求,那么阻塞线程,让出CPU的所有权,加如到阻塞队列里面去。CPU从就绪队列里面,按照优先权的前后,重新调度新的线程的执行。当阻塞队列里面的线程获得所需求的资源,或者是同步完成就又重新加到就绪队列里面等待执行。 -err
- 2022-08-14 09:24:06下载
- 积分:1
-
information obtained CPU
取得CPU的信息-information obtained CPU
- 2022-09-09 00:50:02下载
- 积分:1
-
用vc++mfc做的时钟
#include "stdafx.h"#include"windows.h"#include "clock.h"#include "clockDlg.h"#include"math.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// CAboutDlg dialog used for App Aboutclass CAboutDlg : public CDialog{public: CAboutDlg();// Dialog Data //{{AFX_DATA(CAboutDlg) enum { IDD = IDD_ABOUTBOX }; //}}AFX_DATA // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CAboutDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL// Implementationprotected: //{{AFX_MSG(CAboutDlg) //}}AFX_MSG DECLARE_MESSAGE_MAP()
- 2022-08-21 22:08:38下载
- 积分:1
-
Rutas desde ASP.net con visual basic .net
Rutas desde ASP.net con visual basic .net
- 2022-01-21 05:25:08下载
- 积分:1
-
基于VC++的编程,这是一个声卡采集演示,显示WAV…
声卡数据采集播放演示源程序(vc),可以显示声卡书库的波形-Based on VC programming, it is a demo for sound card collection, showing the waveform of sound card library.
- 2022-09-25 12:10:03下载
- 积分:1
-
一个飞机票订票和退票系统。假设某民航机场有m个航次的班机,每个航次都只到达一个目的地,试为该机场售票处设计一个自动订票和退票系统。
该系统需要实现以...
一个飞机票订票和退票系统。假设某民航机场有m个航次的班机,每个航次都只到达一个目的地,试为该机场售票处设计一个自动订票和退票系统。
该系统需要实现以下功能:
(1) 订票:若该航次余票数大于等于客订票数,则在该航次的乘客表(按乘客姓氏字母词典顺序排列)中,插入订票乘客的信息项,并修改该航次有关数据,否则给出相应提示信息;
(2) 退票:若退票数小于该乘客原订票数,则在相应的乘客表中找到该乘客项,修改该航次及乘客表中有关数据。当由于退票使得该乘客的订票数为零时,要从乘客表中撤销该乘客项;否则给出相应的提示信息;
(3) 将某航次的余票数恢复初值为该航次的最大客票数;
(4) 显示:显示该机场各航次班机的售票情况。-Booking air tickets and a refund system. Assuming there are m a civil airport voyage of the flights, each voyage only to reach a destination, the trial design for an automated airport ticket booking and refund system.
The system needs to achieve the following functions:
(1) booking: If the voyage than the number of votes greater than or equal to the number of passengers booking, the passenger in the voyage List (alphabetical by passengers dictionary order), insert the booking information of passengers, and modify the data of the voyage Otherwise, the corresponding message
(2) Refund: If the refund is less than the number of votes of the original passeng
- 2022-08-03 17:49:14下载
- 积分:1
-
function [tout, yout] = rk4 (ypfun. tspan, y0, h)% fixed step four
function [tout, yout] = rk4(ypfun, tspan, y0, h)
%定步长四阶Runge-Kutta法求常微分方程(组)数值解
%[tout,yout] = rk4( ypfun , tspan, y0,h)
% 这里字符串ypfun是用以表示f(t, y)的M文件名,
% tspan=[t0, tfinal]表示自变量初值t0和终值tf
% y0表示初值向量y0,h是步长。
% 输出列向量tout表示节点 (t0 , t1 , … , tn)
% 输出矩阵yout 表示数值解,每一列对应y的一个分量-function [tout, yout] = rk4 (ypfun. tspan, y0, h)% fixed step four-stage Runge- Kutta method for ordinary differential equations (Group) numerical solution% [tout. yout] = rk4 (ypfun, tspan, y0, h)% string ypfun here is used to indicate that f (t, y) M name, tspan% = [t0. tfinal] said variable initial and final t0 tf% y0 said initial vector y0, h is a step. % Output column vector tout said Node (t0, t1, ..., tn)% output matrix yout said numerical solution, each y counterparts out of a weight
- 2023-01-15 01:20:03下载
- 积分:1