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


Java StringWriter hashCode()用法及代码示例


Java中的StringWriter类的hashCode()方法用于获取此StringWriter实例的HashCode值。此方法不接受任何参数,并返回所需的int值。

用法:

public int hashCode()

参数:此方法接受不接受任何参数。


返回值:此方法返回一个int值,该值是StringWriter实例的HashCode值。

下面的方法说明了hashCode()方法的用法方式:

示例1:

// Java program to demonstrate 
// StringWriter hashCode() method 
  
import java.io.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        try { 
  
            // Create a StringWriter instance 
            StringWriter StringWriter 
                = new StringWriter(); 
  
            // Get the String 
            // to be written in the stream 
            String string = "GeeksForGeeks"; 
  
            // Write the string 
            // to this StringWriter using write() method 
            StringWriter.write(string); 
  
            // Get the HashCode value using hashCode() 
            System.out.println("HashCode value: "
                               + StringWriter.hashCode()); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
HashCode value: 589431969

示例2:

// Java program to demonstrate 
// StringWriter hashCode() method 
  
import java.io.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        try { 
  
            // Create a StringWriter instance 
            StringWriter StringWriter 
                = new StringWriter(); 
  
            // Get the String 
            // to be written in the stream 
            String string = "GFG"; 
  
            // Write the string 
            // to this StringWriter using write() method 
            StringWriter.write(string); 
  
            // Get the HashCode value using hashCode() 
            System.out.println("HashCode value: "
                               + StringWriter.hashCode()); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
HashCode value: 589431969


相关用法


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