This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Testing and the fly likes Iterator in TestNG class Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Engineering » Testing
Reply Bookmark "Iterator in TestNG class" Watch "Iterator in TestNG class" New topic
Author

Iterator in TestNG class

justin hoffer
Greenhorn

Joined: Jun 08, 2011
Posts: 1
If a class implements iterator interface, it provides next() and hasnext(). Do these next() and hasnext() get called automatically when the class's object is created?

Thanks
Justin
Jeanne Boyarsky
internet detective
Marshal

Joined: May 26, 2003
Posts: 26184
    
  66

Justin,
Welcome to CodeRanch!

No. next() and hasNext() are not called automatically on an iterator.


[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Iterator in TestNG class
 
Similar Threads
My LinkedList Iterator - Can't print first element - No use of Java API
Please help me understand Iterator - I am a beginner and I did a reserch but I didn't find an answer
Rant about java Iterator interface
Why is this hashmap iterating through an infinite loop?
Q about ArrayList/LinkedList