int hashCode


描述

所述java.io.FileOutputStream.hashCode()方法返回该对象的hashCode。

声明

以下是java.io.FilePermission.hashCode()方法的声明

public int hashCode()

参数

NA

返回值

此方法返回此对象的hashCode。

异常

NA

实例

以下示例显示了java.io.FilePermission.hashCode()方法的用法。

package com.tutorialspoint;

import java.io.FilePermission;
import java.io.IOException;

public class FilePermissionDemo {
   public static void main(String[] args) throws IOException {
      FilePermission fp = null;

      try {
         // create new file permissions
         fp = new FilePermission("C://test.txt", "read");

         // the hash code value
         int hash = fp.hashCode();

         // prints
         System.out.print("Hash Code: "+hash);

      } catch(Exception ex) {
         // if an error occurs
         ex.printStackTrace();
      }
   }
}

让我们编译并运行上面的程序,这将产生以下结果

Hash Code: 0