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


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


PropertyPermission类equals()方法

  • equals() 方法可在java.util包。
  • equals() 方法用于检查这个对象和给定的对象(ob)是否相等。
  • equals() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • equals() 方法在检查两个对象的相等性时不会抛出异常。

用法:

    public boolean equals(Object ob);

参数:

  • Object ob– 表示要在此 PropertyPermission 中使用此对象进行测试的对象。

返回值:

该方法的返回类型是boolean, 当两个对象相同时返回真,等于否则返回假。

例:

// Java program to demonstrate the example 
// of boolean equals(Object ob) method of 
// PropertyPermission

import java.util.*;

public class EqualsOfPropertyPermission {
 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 equals() method is to
  // whether two PropertyPermission
  // objects are same or not in terms
  // of name and actions
  boolean status = prop_perm1.equals(prop_perm2);

  System.out.print("prop_perm1.equals(prop_perm2):");
  System.out.println(status);
 }
}

输出

prop_perm1.equals(prop_perm2):false


相关用法


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