代码搜索:Containers
找到约 1,482 项符合「Containers」的源代码
代码结果 1,482
www.eeworm.com/read/344239/11896479
java printingcontainers.java
//: holding/PrintingContainers.java
// Containers print themselves automatically.
import java.util.*;
import static net.mindview.util.Print.*;
public class PrintingContainers {
static Collect
www.eeworm.com/read/446555/1711840
svn-base qmap-example-output.txt.svn-base
src/containers/qmap> ./qmap
[0201633612]:Title: Design Patterns; Author: Gamma; ISBN: 0201633612; Year: 1995
[0201700735]:Title: The C++ Programming Language; Author: Stroustrup; ISBN: 0201700735; Yea
www.eeworm.com/read/446555/1711845
txt qmap-example-output.txt
src/containers/qmap> ./qmap
[0201633612]:Title: Design Patterns; Author: Gamma; ISBN: 0201633612; Year: 1995
[0201700735]:Title: The C++ Programming Language; Author: Stroustrup; ISBN: 0201700735; Yea
www.eeworm.com/read/375802/2719622
as animationpolicy.as
package qs.containers
{
public class AnimationPolicy
{
public static const NEVER:String = "never";
public static const AUTO:String = "auto";
public static const ALWAYS:String = "always";
www.eeworm.com/read/260165/4335127
hpp array_policies.hpp
#error This file is now obsolete. Instead include stlsoft/containers/util/array_policies.hpp
/* Compatibility
[]
[]
*/
www.eeworm.com/read/103816/15719769
h gpolyctr.h
//
// $Source: /home/gambit/CVS/gambit/sources/poly/gpolyctr.h,v $
// $Date: 2002/08/27 17:29:46 $
// $Revision: 1.2 $
//
// DESCRIPTION:
// Declaration of specialized containers for polynomials
//
//
www.eeworm.com/read/432484/8602832
m myhist1.m
function [no,xo] = myhist1(varargin)
%HIST Histogram.
% N = HIST(Y) bins the elements of Y into 10 equally spaced containers
% and returns the number of elements in each container. If Y is a
www.eeworm.com/read/373369/9459788
java queuebehavior.java
//: containers/QueueBehavior.java
// Compares the behavior of some of the queues
import java.util.concurrent.*;
import java.util.*;
import net.mindview.util.*;
public class QueueBehavior {
p
www.eeworm.com/read/373369/9459811
java associativearray.java
//: containers/AssociativeArray.java
// Associates keys with values.
import static net.mindview.util.Print.*;
public class AssociativeArray {
private Object[][] pairs;
private int inde
www.eeworm.com/read/373369/9459813
java randombounds.java
//: containers/RandomBounds.java
// Does Math.random() produce 0.0 and 1.0?
// {RunByHand}
import static net.mindview.util.Print.*;
public class RandomBounds {
static void usage() {
prin