代码搜索:Iterator
找到约 10,000 项符合「Iterator」的源代码
代码结果 10,000
www.eeworm.com/read/245905/12772759
c iterator.c
/*
*/
#include "defs.H"
const int DEFAULT_LIST_CAPACITY = 100;
template class Iterator;
/*
*/
template
class List {
public:
List(long size = DEFAULT_LIST_CAPACITY);
/*
*/
www.eeworm.com/read/144598/12782464
java iterator.java
public interface Iterator
{
public Object First();
public Object Next();
public boolean isDone();
public Object CurrentItem();
}
www.eeworm.com/read/144598/12782465
class iterator.class
www.eeworm.com/read/144598/12782798
java iterator.java
public interface Iterator
{
public Object First();
public Object Next();
public boolean isDone();
public Object CurrentItem();
}
www.eeworm.com/read/144598/12782799
class iterator.class
www.eeworm.com/read/144074/12819392
h iterator.h
#ifndef ABSTRACT_ITERATOR
#define ABSTRACT_ITERATOR
template
class Iterator
{
protected:
// indicates whether iterator has reached end of list.
// must be maintained
www.eeworm.com/read/143865/12834040
h iterator.h
templateclass iterator{
public:
virtual int init()=0;
virtual int operator!()=0;
virtual T operator()()=0;
virtual int operator++()=0;
virtual void operator=(T newValue)=0;
www.eeworm.com/read/330149/12913054
vpj iterator.vpj
[COMPILER]
INCLUDEDIRS=
compile=concur|capture|:Compile:&Compile,javac %f
make=:Build:&Build,javamake
rebuild=concur|capture|:Rebuild:&Rebuild,
debug=concur|capture|:Debug:&Debug,jdb %n
execute=
www.eeworm.com/read/330149/12913060
vtg iterator.vtg
www.eeworm.com/read/142806/12917455
h iterator.h
/*
*
* Copyright (c) 1994
* Hewlett-Packard Company
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,