代码搜索:Iterator
找到约 10,000 项符合「Iterator」的源代码
代码结果 10,000
www.eeworm.com/read/135259/13947868
cc iterator.cc
#ifndef __ITERATOR_CC
#define __ITERATOR_CC
#pragma option push -b -a8 -pc -Vx- -Ve- -w-inl -w-aus -w-sig
/***************************************************************************
*
* iterat
www.eeworm.com/read/235107/14085592
java iterator.java
package dsa.adt;
public interface Iterator {
//移动到第一个元素
public void first();
//移动到下一个元素
public void next();
//检查迭代器中是否还有剩余的元素
public boolean isDone();
//返回当前元素
public Object curre
www.eeworm.com/read/202486/15381856
h iterator.h
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill 2000
// Iterator.h
// An Iterator Class Template
template
class Iterator
{
public:
virtual void res
www.eeworm.com/read/112762/15477499
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,
www.eeworm.com/read/110378/15535377
cdi iterator.cdi
www.eeworm.com/read/110378/15535382
class iterator.class
www.eeworm.com/read/110378/15535389
java iterator.java
/**
* Iterator Interface
*/
public interface Iterator {
public abstract void First();
public abstract void Next();
public abstract boolean IsDone();
public abstract void Curr
www.eeworm.com/read/105621/15663751
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,
www.eeworm.com/read/103423/15733499
java iterator.java
public interface Iterator
{
public Object First();
public Object Next();
public boolean isDone();
public Object CurrentItem();
}