代码搜索:Storage
找到约 10,000 项符合「Storage」的源代码
代码结果 10,000
www.eeworm.com/read/258191/11878606
cpp cpplib.cpp
//: C04:CppLib.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// C library converted to C++
/
www.eeworm.com/read/258191/11878627
cpp clib.cpp
//: C04:CLib.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Implementation of example C-lik
www.eeworm.com/read/258191/11879202
cpp stash3.cpp
//: C07:Stash3.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Function overloading
#includ
www.eeworm.com/read/258191/11879237
h stash3.h
//: C07:Stash3.h
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Function overloading
#ifndef STASH
www.eeworm.com/read/344239/11895872
java stack.java
//: net/mindview/util/Stack.java
// Making a stack from a LinkedList.
package net.mindview.util;
import java.util.LinkedList;
public class Stack {
private LinkedList storage = new Linke
www.eeworm.com/read/344239/11896929
java simplequeue.java
//: generics/SimpleQueue.java
// A different kind of container that is Iterable
import java.util.*;
public class SimpleQueue implements Iterable {
private LinkedList storage = new Lin
www.eeworm.com/read/344239/11896998
java randomlist.java
//: generics/RandomList.java
import java.util.*;
public class RandomList {
private ArrayList storage = new ArrayList();
private Random rand = new Random(47);
public void add(T it
www.eeworm.com/read/344239/11897088
java genericcast.java
//: generics/GenericCast.java
class FixedSizeStack {
private int index = 0;
private Object[] storage;
public FixedSizeStack(int size) {
storage = new Object[size];
}
public v
www.eeworm.com/read/344238/11897803
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/257924/11906195
asm fileio.asm
#fileIO.asm---------------------------------------------
.PB main
.PV buffer -32
.PV fname -64
#allocate local storage on stack
PUSHQ $FP
MOV $FP,$SP
LQI $R7,64
SUB $SP,$SP,$R7
#read and