I oscillate with using

import java.util.Scanner;
.
.
.
Scanner scan = new Scanner(System.in);
.
.
. 
Integer.parseInt(scan.next());

or

import java.util.Scanner;
.
.
.    
Scanner scan = new Scanner(System.in);
.
.
.
scan.nextInt();    

Which one is more useful, or more precisely; which would be running faster?

link|improve this question

What is scan? – Alexander Pogrebnyak Nov 7 '11 at 21:29
@AlexanderPogrebnyak A java.util.Scanner. – Josh Lee Nov 7 '11 at 21:29
@Josh. I bow to your mind reading abilities ( and the knowledge of Java libraries ) :) – Alexander Pogrebnyak Nov 7 '11 at 21:30
Sorry, I've just made the corrections – El3ctr0n1c4 Nov 7 '11 at 21:34
feedback

3 Answers

up vote 2 down vote accepted

Now granted, this is just the Sun implementation, but below is the nextInt(int radix) implementation.

Note that it uses a special pattern (integerPattern()). This means if you use next() you'll be using your default pattern. Now if you just made a new Scanner() you'll be using a typical whitespace pattern. But if you used a different pattern, you can't be certain you'll be picking up a word. You might be picking up a line or something.

In the general case I would highly recommend nextInt(), since it provides you with an abstraction, giving you less that's likely to go wrong, and more information when something does.

Read this at your leisure:

public int nextInt(int radix) {
    // Check cached result
    if ((typeCache != null) && (typeCache instanceof Integer)
    && this.radix == radix) {
        int val = ((Integer)typeCache).intValue();
        useTypeCache();
        return val;
    }
    setRadix(radix);
    clearCaches();
    // Search for next int
    try {
        String s = next(integerPattern());
        if (matcher.group(SIMPLE_GROUP_INDEX) == null)
            s = processIntegerToken(s);
        return Integer.parseInt(s, radix);
    } catch (NumberFormatException nfe) {
        position = matcher.start(); // don't skip bad token
        throw new InputMismatchException(nfe.getMessage());
    }
}
link|improve this answer
feedback

My gut feeling is that scan.nextInt, a scan.next could read in newlines or whitespace or other garbage. Might take longer to sift through the junk chars

link|improve this answer
feedback

For which one is faster , I think manually parsing Integer.parseInt is faster, as scan.nextInt would do a regex based match and then do an Integer.parseInt on that value

http://download.oracle.com/javase/1,5,0/docs/api/java/util/Scanner.html#nextInt()

Cheers!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.