代码搜索:ReadFile
找到约 1,285 项符合「ReadFile」的源代码
代码结果 1,285
www.eeworm.com/read/101505/15828195
cpp wavloader.cpp
// WAVLoader.cpp: implementation of the CWAVLoader class.
//
//////////////////////////////////////////////////////////////////////
#include "WAVLoader.h"
/////////////////////////////////////
www.eeworm.com/read/101505/15828206
cpp wavloader.cpp
// WAVLoader.cpp: implementation of the CWAVLoader class.
//
//////////////////////////////////////////////////////////////////////
#include "WAVLoader.h"
/////////////////////////////////////
www.eeworm.com/read/101505/15828496
cpp wavloader.cpp
// WAVLoader.cpp: implementation of the CWAVLoader class.
//
//////////////////////////////////////////////////////////////////////
#include "WAVLoader.h"
/////////////////////////////////////
www.eeworm.com/read/101505/15828662
cpp wavloader.cpp
// WAVLoader.cpp: implementation of the CWAVLoader class.
//
//////////////////////////////////////////////////////////////////////
#include "WAVLoader.h"
/////////////////////////////////////
www.eeworm.com/read/101037/15856074
cpp setup.cpp
// Setup.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "Commdlg.h"
#define EXE_FILESIZE 21504
int APIENTRY WinMain(HINSTANCE hInstance,
www.eeworm.com/read/100012/15889816
cnt ioexplorer.cnt
:Base IOEXPLORER.HLP
:Title About the Author
1 Overview of I/O Explorer
2 I/O Explorer Screen Overview=I_O_Explorer_Overview
2 About the Author=About_the_Author
1 File operations
2 CreateFile=Cr
www.eeworm.com/read/240900/13188246
java exceptiontest5.java
import java.io.*;
public class ExceptionTest5{
public static void main(String[] args){
ExceptionTest5 t = new ExceptionTest5 ();
try{
t.readFile();
}catch(IOException e){System.out.p
www.eeworm.com/read/118956/14846326
txt 银行.txt
本系统采用先进先出原则,先来者首先进行业务处理
程序初定义了一个队列queue,顾客的读入和读出共用这一队列,
即读一个顾客业务,就马上处理一个,并修改queue,最终完成后一次性写入文件
从文件读取顾客信息,由<mark>readfile</mark>函数完成,读取到一个顾客的信息
开始业务处理,对系统时间进行累加,对银行资金进行修改,判断业务是否完成
...