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


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


PropertyPermission类hashCode()方法

  • hashCode() 方法可在java.util包。
  • hashCode() 方法用于获取此 PropertyPermission 对象的哈希码值。
  • hashCode() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • hashCode() 方法在返回哈希码时不抛出异常。

用法:

    public int hashCode();

参数:

  • 它不接受任何参数。

返回值:

该方法的返回类型是int,它检索此对象的哈希码值。

例:

// Java program to demonstrate the example 
// of int hashCode() method of 
// PropertyPermission

import java.util.*;

public class HashCodeOfPropertyPermission {
 public static void main(String arg[]) {
  // Instantiates two PropertyPermission object
  PropertyPermission prop_perm1 = new PropertyPermission("os.version", "write");
  PropertyPermission prop_perm2 = new PropertyPermission("os.name", "read");

  // By using hashCode() method is
  // to return the hash code of
  // PropertyPermission objects

  int hc1 = prop_perm1.hashCode();
  int hc2 = prop_perm2.hashCode();

  // Display hash code of prop_perm1
  System.out.print("prop_perm1.hashCode():");
  System.out.println(hc1);

  // Display hash code of prop_perm2
  System.out.print("prop_perm2.hashCode():");
  System.out.println(hc2);
 }
}

输出

prop_perm1.hashCode():1174476494
prop_perm2.hashCode():-1228098475


相关用法


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