代码搜索:Iterator
找到约 10,000 项符合「Iterator」的源代码
代码结果 10,000
www.eeworm.com/read/241710/4559055
cs iterator.cs
using System;
namespace SimpleIterator
{
///
/// Summary description for Iterator.
///
public interface Iterator {
object First();
object Next();
bool isDone
www.eeworm.com/read/240529/4572490
java iterator.java
package com.javapatterns.iterator.blackbox;
public interface Iterator
{
void first();
void next();
boolean isDone();
Object currentItem();
}
www.eeworm.com/read/240529/4572505
java iterator.java
package com.javapatterns.iterator.copsandsales;
public interface Iterator
{
void first();
void next();
boolean isDone();
Object currentItem();
}
www.eeworm.com/read/240529/4572512
java iterator.java
package com.javapatterns.iterator.whitebox;
public interface Iterator
{
void first();
void next();
boolean isDone();
Object currentItem();
}
www.eeworm.com/read/237048/4634034
java iterator.java
/* Iterator.java -- Interface for iterating over collections
Copyright (C) 1998, 2001 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you c
www.eeworm.com/read/233448/4689557
java iterator.java
/* Iterator.java -- Interface for iterating over collections
Copyright (C) 1998, 2001, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you
www.eeworm.com/read/233448/4690206
h iterator.h
// Backward-compat support -*- C++ -*-
// Copyright (C) 2001, 2004 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redist
www.eeworm.com/read/233448/4692350
cc iterator.cc
// Copyright (C) 2004 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms