当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Scanner radix()用法及代码示例


java.util.Scanner类的radix()方法返回此扫描器的默认基数。

用法:

public int radix()

返回值:此函数返回此扫描仪的默认基数。


以下示例程序旨在说明上述函数:

示例1:

// Java program to illustrate the 
// radix() method of Scanner class in Java 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        String s = "Geeksforgeeks has Scanner methods"; 
  
        // create a new scanner 
        // with the specified String Object 
        Scanner scanner = new Scanner(s); 
  
        // print a line of the scanner 
        System.out.println("Scanner String:\n"
                           + scanner.nextLine()); 
  
        // print the default radix 
        System.out.println("Default Radix value: "
                           + scanner.radix()); 
  
        // close the scanner 
        scanner.close(); 
    } 
}
输出:
Scanner String:
Geeksforgeeks has Scanner methods
Default Radix value: 10

示例2:

// Java program to illustrate the 
// radix() method of Scanner class in Java 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        String s = "Geeksforgeeks"; 
  
        // create a new scanner 
        // with the specified String Object 
        Scanner scanner = new Scanner(s); 
  
        // print a line of the scanner 
        System.out.println("Scanner String: "
                           + scanner.nextLine()); 
  
        // print the default radix 
        System.out.println("Default Radix value: "
                           + scanner.radix()); 
  
        // change the radix of this scanner 
        scanner.useRadix(30); 
  
        System.out.println("Radix changed to 30"); 
  
        // print the default radix 
        System.out.println("Default Radix value: "
                           + scanner.radix()); 
  
        // close the scanner 
        scanner.close(); 
    } 
}
输出:
Scanner String: Geeksforgeeks
Default Radix value: 10
Radix changed to 30
Default Radix value: 30

参考: https://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html#radix()



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Scanner radix() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。