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


Java Java.lang.Thread.checkAccess()用法及代碼示例



描述

這個java.lang.Thread.checkAccess() 方法確定當前運行的線程是否有權修改此線程。

聲明

以下是聲明java.lang.Thread.checkAccess()方法

public final void checkAccess()

參數

NA

返回值

此方法不返回任何值。

異常

SecurityException- 如果當前線程不允許訪問此線程。

示例

下麵的例子展示了 java.lang.Thread.checkAccess() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class ThreadDemo {

   public static void main(String args[]) {

      new ThreadClass("A");
      Thread t = Thread.currentThread();

      try {
         /* determines if the currently running thread has permission to 
            modify this thread */
         t.checkAccess();
         System.out.println("You have permission to modify");
      }

      /* if the current thread is not allowed to access this thread, then it 
         result in throwing a SecurityException. */
      catch(Exception e) {
         System.out.println(e);
      }
   }
}

class ThreadClass implements Runnable {

   Thread t;
   String str;

   ThreadClass(String str) {

      this.str = str;
      t = new Thread(this);
      
      // this will call run() function
      t.start();    
   }

   public void run() {
      System.out.println("This is run() function");
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

You have permission to modify
This is run() function

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Thread.checkAccess() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。