代码搜索:Iterator
找到约 10,000 项符合「Iterator」的源代码
代码结果 10,000
www.eeworm.com/read/392558/2494157
java iterator.java
package com.javapatterns.iterator.copsandsales;
public interface Iterator
{
void first();
void next();
boolean isDone();
Object currentItem();
}
www.eeworm.com/read/392558/2494163
java iterator.java
package com.javapatterns.iterator.whitebox;
public interface Iterator
{
void first();
void next();
boolean isDone();
Object currentItem();
}
www.eeworm.com/read/384423/2600497
iterator_base
/* Copyright (C) 2004 Garrett A. Kajmowicz
This file is part of the uClibc++ Library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser Gen
www.eeworm.com/read/384220/2603048
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/382594/2634143
cpp iterator.cpp
// -*- C++ -*-
// Iterator.cpp,v 4.7 2003/11/01 11:15:22 dhinton Exp
// Copyright (C) 1989 Free Software Foundation, Inc.
// written by Douglas C. Schmidt (schmidt@cs.wustl.edu)
// This file
www.eeworm.com/read/382594/2634165
h iterator.h
// -*- C++ -*-
// Iterator.h,v 4.6 2002/04/11 02:39:18 ossama Exp
// Copyright (C) 1989 Free Software Foundation, Inc.
// written by Douglas C. Schmidt (schmidt@cs.wustl.edu)
// This file is
www.eeworm.com/read/381490/2643808
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/380073/2663569
java iterator.java
package headfirst.iterator.dinermerger;
public interface Iterator {
boolean hasNext();
Object next();
}
www.eeworm.com/read/377893/2695453
cs iterator.cs
using System;
namespace SimpleIterator
{
///
/// Summary description for Iterator.
///
public interface Iterator {
object First();
object Next();
bool isDone