Java.io.File.hashCode()方法實例
java.io.File.hashCode() 方法計算並返回此抽象名稱的哈希碼。
聲明
以下是java.io.File.hashCode()方法的聲明:
public int hashCode()
參數
-
NA
返回值
該方法返回一個哈希代碼此抽象路徑名。
異常
-
NA
例子
下麵的示例演示java.io.File.hashCode()方法的用法。
package com.yiibai; import java.io.File; public class FileDemo { public static void main(String[] args) { File f = null; int v; boolean bool = false; try{ // create new file f = new File("C:\test.txt"); // returns hash code for this abstract pathname v = f.hashCode(); // true if the file path exists bool = f.exists(); // if file exists if(bool) { // prints System.out.print("The hash code for this abstract pathname: "+v); } }catch(Exception e){ // if any error occurs e.printStackTrace(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
The hash code for this abstract pathname: -246273912