代码搜索:Storage
找到约 10,000 项符合「Storage」的源代码
代码结果 10,000
www.eeworm.com/read/472264/6874585
cpp eprecomp.cpp
#include "pch.h"
#include "eprecomp.h"
#include "algebra.h"
#include
NAMESPACE_BEGIN(CryptoPP)
template void ExponentiationPrecomputation::Precompute(const Ele
www.eeworm.com/read/395876/8147425
java genericcast32.java
// generics/GenericCast32.java
// TIJ4 Chapter Genericss, Exercise 32, page 699
/*
* Verify that FixedSizeStack in GenericCast.java generates exceptions
* if you try to go out of its bounds. Does
www.eeworm.com/read/395876/8147508
java genericcast33.java
// generics/GenericCast33.java
// TIJ4 Chapter Generics, Exercise 33, page 699
// Repair GenericCast.java using an ArrayList.
import java.util.*;
class VariableSizeStack {
private ArrayLis
www.eeworm.com/read/395876/8148494
java storagetest.java
// object/StorageTest.java
// TIJ4 Chapter Object, Exercise 6, page 90
// Write a program that includes and calls the storage() method defined as a
// code fragment in this chapter.
public class
www.eeworm.com/read/395332/8184280
cpp houghcircles.cpp
#include
#include
#include
int main(int argc, char** argv)
{
IplImage* img;
IplImage* src;
char *filename = "circles.png";
// if( argc == 2 && (img=cvLoadI
www.eeworm.com/read/193480/8222973
pas planproppref.pas
{***************************************************************************}
{ Property preferences storage }
{ for Delphi & C++Builder
www.eeworm.com/read/193480/8222988
pas asgproppref.pas
{***************************************************************************}
{ Property preferences storage }
{ for Delphi & C++Builder
www.eeworm.com/read/293914/8264193
cpp businterfaceunit.cpp
/***************************************************************************
BusInterfaceUnit.cpp - description
-------------------
begin
www.eeworm.com/read/292936/8322113
makefile
#-----------------------------------------------------------------------
# File : makefile
# Contents: build eclat program
# Author : Christian Borgelt
# History : 2002.06.09 file created from apr
www.eeworm.com/read/292880/8327865
java arrayqueue.java
// queue implemented as an array
public class ArrayQueue {
private int first, last, size;
private Object[] storage;
public ArrayQueue() {
this(100);
}