Monday, 13 February 2017

Scanner : ResetMethod




public class ResetMethod {


    public static void main(String[] args) {

        String s = "Hello World! 3 + 3.0 = 6.0 true ";
        // create a new scanner with the specified String Object        Scanner scanner = new Scanner(s);
        // print a line of the scanner        System.out.println("" + scanner.nextLine());
        // change the locale of this scanner        scanner.useLocale(Locale.US);
        // change the radix of this scanner        scanner.useRadix(30);
        // reset and check the values for radix and locale, which are the default        scanner.reset();        System.out.println("" + scanner.radix());        System.out.println("" + scanner.locale());
        // close the scanner        scanner.close();    }
}

No comments:

Post a Comment