代码搜索:reader
找到约 10,000 项符合「reader」的源代码
代码结果 10,000
www.eeworm.com/read/146790/12612429
java iotest2.java
//从键盘上输入一个整数--方法2
import java.io.*;
public class IOTest2{
public static void main(String[] args){
Reader ir = new InputStreamReader(System.in);
BufferedReader r = new BufferedReader(ir);
www.eeworm.com/read/134379/13994453
h brlock.h
#ifndef __LINUX_BRLOCK_H
#define __LINUX_BRLOCK_H
/*
* 'Big Reader' read-write spinlocks.
*
* super-fast read/write locks, with write-side penalty. The point
* is to have a per-CPU read/write loc
www.eeworm.com/read/112514/15459596
cpp 图书借阅系统..cpp
#include
#include
#include
#include
const int Maxr=100;
const int Maxb=100;
const int Maxbor=5;
class Reader{
int tag;
int no;
char name[10];
www.eeworm.com/read/113130/15469734
c address.c
// Address Reader
// offsets of specific entries
#define LastName 0
#define FirstName 1
#define Company 2
#define Phone1 3
#define Phone2 4
#define Phone3 5
#define Phone4 6
#define Ph
www.eeworm.com/read/109477/15556786
h brlock.h
#ifndef __LINUX_BRLOCK_H
#define __LINUX_BRLOCK_H
/*
* 'Big Reader' read-write spinlocks.
*
* super-fast read/write locks, with write-side penalty. The point
* is to have a per-CPU read/write loc
www.eeworm.com/read/103514/15730095
c readgif.c
/* zgv 5.4 - GIF, JPEG and PBM/PGM/PPM viewer, for VGA PCs running Linux.
* Copyright (C) 1993-2001 Russell Marks. See README for license details.
*
* readgif.c - GIF reader.
*/
#include
www.eeworm.com/read/190618/8440965
htm rdfrec.htm
The rdfrec Command
The rdfrec Command
NAME
rdfrec - fast-format record reader
www.eeworm.com/read/289331/8559021
c main_menu.c
#include
#include "globals.h"
#include "trouble_code_reader.h"
#include "about.h"
#include "sensors.h"
#include "options.h"
#include "serial.h"
#include "custom_gui.h"
#include "mai
www.eeworm.com/read/183096/9178537
java ixmlreader.java
import java.io.*;
class XMLReader extends Reader{
private final static String ASCII="ASCII";
private final static String UTF16B="UTF-16BE";
private final static String UTF16L="UTF-16BE";
pr