Home » Java Thread checkAccess() Method with Examples

Java Thread checkAccess() Method with Examples

by Online Tutorials Library

Java Thread checkAccess() method

The activeCount() method of thread class determines if the currently running thread has permission to modify the thread.

Syntax

Return

It doesn’t return any value.

Exception

SecurityException: This exception throws if the current thread is not allowed to access the thread.

Example

Test it Now

Output:

Thread-0 has access  Thread-1 has access  Thread-0 finished executing  Thread-1 finished executing  

You may also like