代码搜索结果

找到约 10,000 项符合 Storage 的代码

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

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

genericcast.java

//: generics/GenericCast.java class FixedSizeStack { private int index = 0; private Object[] storage; public FixedSizeStack(int size) { storage = new Object[size]; } public v

install.txt

安装: Smartphone版本 1. 自动安装版 a) 安装程序 b) 将数据文件放到内存或者存储卡上的任意目录里 c) 运行MDict, 选Library->Refresh Library List. 程序会自动查找所有".mdx"结尾的文件,并在Library菜单下显示。 d) 在Library菜单里选择你需要使用的数据文件 e) 可以开始使用, 用Back键可以切换到输入

stash4.h

//: C09:Stash4.h // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Inline functions #ifndef STASH4_H

stash4.cpp

//: C09:Stash4.cpp {O} // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt #include "Stash4.h" #include

tpstash2.h

//: C16:TPStash2.h // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Templatized PStash with nested it

tpstash.h

//: C16:TPStash.h // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt #ifndef TPSTASH_H #define TPSTASH_H

stash2.h

//: C06:Stash2.h // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // With constructors & destructors #i

stash2.cpp

//: C06:Stash2.cpp {O} // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Constructors & destructors #