Can not access a member of class "com.ABC$XYZ" with modifiers "synchronized"

4.2k Views Asked by At

I'm trying to retrieve synchronized method using reflection API.

Sample code snippet given below:

class ABC {
    class XYZ {
        synchronized List methodOfXYZ() {
            System.out.println("Im in Method");
            // do sum stuff
            return <Obj-List>;
        }
    }
}

I'm getting the runtime exception like:

java.lang.IllegalAccessException: Class "com.TestReflection" can not access a member of class "com.ABC$XYZ" with modifiers "synchronized".
1

There are 1 best solutions below

1
On

try this:

public Class ABC
{
    public Class XYZ 
    {
       public synchronized List methodOfXYZ()
       {
          System.out.println("Im in Method");
         // do sum stuff
         return <Obj-List>;
        }
     }
 }