當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java PropertyPermission getActions()用法及代碼示例


PropertyPermission類getActions()方法

  • getActions() 方法可在java.util包。
  • getActions() 方法用於以字符串表示的形式獲取當前操作的列表。
  • getActions() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • getActions() 方法在獲取一組動作時不會拋出異常。

用法:

    public String getActions();

參數:

  • 它不接受任何參數。

返回值:

該方法的返回類型是String,它檢索動作的字符串表示。

例:

// Java program to demonstrate the example 
// of String getActions() method of 
// PropertyPermission

import java.util.*;

public class GetActionsOfPropertyPermission {
 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 getActions() method is to
  // returns the action on at the property
  // on the objects prop_perm1, prop_perm2

  String action1 = prop_perm1.getActions();
  String action2 = prop_perm2.getActions();

  // Display action on prop_perm1
  System.out.print("prop_perm1.getActions():");
  System.out.println(action1);

  // Display action on prop_perm2
  System.out.print("prop_perm2.getActions():");
  System.out.println(action2);
 }
}

輸出

prop_perm1.getActions():write
prop_perm2.getActions():read


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java PropertyPermission getActions() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。