Java FilePermission hashCode()方法

java.io.FileOutputStream.hashCode() 用于返回对象的哈希码值。

1 语法

public int hashCode()

2 参数

3 返回值

返回此对象的哈希码值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.FileOutputStream.hashCode()方法的例子
 */
import java.io.FilePermission;
import java.io.IOException;

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

        try {
            // create new file permissions
            fp = new FilePermission("d://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

热门文章

优秀文章