當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java String轉Short用法及代碼示例


給定 Java 中的 String “str”,任務是將此字符串轉換為短類型。

例子:

Input: str = "1"
Output: 1

Input: str = "3"
Output: 3

方法1:(樸素方法)
一種方法是遍曆字符串,將數字一一添加到短類型中。這種方法不是一種有效的方法。

方法二:(使用 Short.parseShort() 方法)
最簡單的方法是使用 java.lang 包中 Short 類的 parseShort() 方法。此方法接受要解析的字符串並從中返回短類​​型。如果不可轉換,此方法將引發錯誤。

用法:



Short.parseShort(str);

下麵是上述方法的實現:

範例1:顯示轉換成功


// Java Program to convert string to short
  
class GFG {
  
    // Function to convert String to Short
    public static short convertStringToShort(String str)
    {
  
        // Convert string to short
        // using parseShort() method
        return Short.parseShort(str);
    }
  
    // Driver code
    public static void main(String[] args)
    {
  
        // The string value
        String stringValue = "1";
  
        // The expected short value
        short shortValue;
  
        // Convert string to short
        shortValue = convertStringToShort(stringValue);
  
        // Print the expected short value
        System.out.println(
            stringValue
            + " after converting into short = "
            + shortValue);
    }
}
輸出:
1 after converting into short = 1

方法3:(使用 Short.valueOf() 方法)
Short 類的 valueOf() 方法將數據從其內部形式轉換為人類可讀的形式。

用法:

Short.valueOf(str);

下麵是上述方法的實現:

範例1:顯示轉換成功


// Java Program to convert string to short
  
class GFG {
  
    // Function to convert String to Short
    public static short convertStringToShort(String str)
    {
  
        // Convert string to short
        // using valueOf() method
        return Short.valueOf(str);
    }
  
    // Driver code
    public static void main(String[] args)
    {
  
        // The string value
        String stringValue = "1";
  
        // The expected short value
        short shortValue;
  
        // Convert string to short
        shortValue = convertStringToShort(stringValue);
  
        // Print the expected short value
        System.out.println(
            stringValue
            + " after converting into short = "
            + shortValue);
    }
}
輸出:
1 after converting into short = 1




相關用法


注:本文由純淨天空篩選整理自Code_r大神的英文原創作品 How to Convert a String value to Short value in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。