代码搜索:Collection
找到约 10,000 项符合「Collection」的源代码
代码结果 10,000
www.eeworm.com/read/137022/13347557
c config.c
/* A collection of stuff heavily dependent on the configuration info
* in config.h. The idea is that configuration-dependent tables should
* be located here to avoid having to pepper lots of .c fi
www.eeworm.com/read/136772/13361669
h taclist.h
/*
* File: taclist.h
* ----------------
* Simple list class for storing a linear collection of TAC instructions. It
* supports operations similar in name to the CS107 DArray -- nth, insert,
www.eeworm.com/read/300969/13876946
c misc.c
/* This file contains a collection of miscellaneous procedures:
* mem_init: initialize memory tables. Some memory is reported
* by the BIOS, some is guesstimated and checked later
* env_parse
www.eeworm.com/read/300969/13877091
c misc.c
/* This file contains a collection of miscellaneous procedures. Some of them
* perform simple system calls. Some others do a little part of system calls
* that are mostly performed by the Memory
www.eeworm.com/read/136031/13877565
cpp list7-18.cpp
// Listing 7-18
// This program demonstrates how a map collection can
// be initialized using the insert method and subsript
// operator.
#include
#include
#include
#
www.eeworm.com/read/150874/5688908
java accountlocalhome.java
package examples;
import javax.ejb.*;
import java.util.Collection;
/**
* This is the local home interface for Account. This
* interface is implemented by the EJB container's tools - the
* implem
www.eeworm.com/read/143132/5758768
c config.c
/* A collection of stuff heavily dependent on the configuration info
* in config.h. The idea is that configuration-dependent tables should
* be located here to avoid having to pepper lots of .c fi
www.eeworm.com/read/142674/5763040
java shengserivcebean.java
package xian.bin.serivce;
import java.util.*;
public class ShengSerivceBean implements SerivceSheng {
public ShengSerivceBean() {
}
public Collection getAllSheng() throws Exception {
throw n
www.eeworm.com/read/140959/5778130
java localsort.java
package article;
import java.util.*;
import javax.ejb.*;
public interface LocalSort extends EJBLocalObject {
public Collection getArticles();
public String getSortName();
public Integer
www.eeworm.com/read/140869/5779013
cs linkedfile.cs
using System;
using System.Diagnostics;
using System.Collections;
namespace BplusDotNet
{
///
/// Chunked singly linked file with garbage collection.
///
public clas