This method is used to return the same value as the nextToken method, except that its declared return value is Object rather than String.
Syntax:Library: java.util.StringTokenizer
public Object nextElement()
Example:import java.util.*;
public class StringTokenizerDemo {
public static void main(String[] args) {
// creating string tokenizer
StringTokenizer st = new StringTokenizer("Come to learn");
// moving to next element
st.nextElement();
// checking next to next element
System.out.println("Next element is : " + st.nextElement());
}
}
Output:
Next element is : to
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 495 / 158780642. Delta: 0.02767 с