代码搜索:Buffer
找到约 10,000 项符合「Buffer」的源代码
代码结果 10,000
www.eeworm.com/read/101073/7147400
cpp buffer.cpp
#include
#include
#include
// 功能:实现buffer.h中的各个缓冲类的函数
#include "buffer.h"
#include "cbuffer.h"
DOUBLE defaulterr = 1e-8; // 缺省的误差调整值
int doadjust = 1; /
www.eeworm.com/read/461562/7224771
h buffer.h
#ifndef BUFFER_H
#define BUFFER_H
// 功能:定义数据缓冲区各抽象类
#ifndef DOUBLE
#define DOUBLE double
// #define DOUBLE long double // 如double精度不够,则可将此行去注释,而将上行注释
// 即可得到更精确的结果
#endif // DOUBLE
www.eeworm.com/read/461562/7224775
cpp buffer.cpp
#include
#include
#include
// 功能:实现buffer.h中的各个缓冲类的函数
#include "buffer.h"
#include "cbuffer.h"
DOUBLE defaulterr = 1e-8; // 缺省的误差调整值
int doadjust = 1; /
www.eeworm.com/read/461143/7232797
c buffer.c
/*
* 'buffer.c' implements the buffer-cache functions. Race-conditions have
* been avoided by NEVER letting a interrupt change a buffer (except for the
* data, of course), but instead letting the
www.eeworm.com/read/461029/7235644
java buffer.java
import java.util.*;
import java.io.*;
public class buffer
{
public static void main(String[] args) throws Exception
{
buffertest("C:\\Documents and Settings\\All Users\\Documents\\My Pictu
www.eeworm.com/read/461029/7235652
class buffer.class
www.eeworm.com/read/457217/7332335
ads buffer.ads
package Buffer is
protected type Buffer(Max: Integer) is
procedure Load(S: in String);
procedure Get(C: out Character);
private
Data: String(1..Max);
Start: Integer := 1;
www.eeworm.com/read/457217/7332336
ali buffer.ali
V "GNAT Lib v2007"
A -gnatA
P ZX
R nnnnnnnnnnnnnnnnnnnnnnnvnnvnnnnnvnnnnnnvnnnnnnnnnnnnnnvnnnnnnnnnnnnnnnnnn
U buffer%b buffer.adb b85496b8 NE PK
W system%s system.ads system.ali
W system.
www.eeworm.com/read/457217/7332337
adb buffer.adb
package body Buffer is
protected body Buffer is
procedure Load(S: in String) is
begin
Start := 1;
Finish := S'Length;
Data(Start .. Finish) := S;
end Load;
procedure Ge
www.eeworm.com/read/457217/7332346