Tagged Questions

2
votes
3answers
164 views

Implementing the Iterable interface

I just found this exam question in an old exam paper and am readying myself for an upcoming exam. I cannot figure it out : The following depicts a contrived partial class which implements the ...
2
votes
5answers
1k views

java iterator/iterable subinterface

I have an interface for a variety of classes, all of which should implement Iterator, so I have something like public interface A extends Iterable<A> { ...otherMethods()... } For the concrete ...