Home | History | Annotate | Download | only in util

Lines Matching defs:nextInt

55  *     int i = sc.nextInt();
72 * System.out.println(s.nextInt());
73 * System.out.println(s.nextInt());
108 * primitive-type companion methods (such as {@link #nextInt} and
1297 * exception. For instance, after an invocation of the {@link #nextInt}
2017 * {@link #nextInt} method. The scanner does not advance past any input.
2030 * {@link #nextInt} method. The scanner does not advance past any input.
2081 * <tt>nextInt()</tt> behaves in exactly the same way as the
2082 * invocation <tt>nextInt(radix)</tt>, where <code>radix</code>
2092 public int nextInt() {
2093 return nextInt(defaultRadix);
2122 public int nextInt(int radix) {