79530408

Date: 2025-03-24 07:34:10
Score: 8 🚩
Natty:
Report link

I tried @Shant Dashjian's solution but I am getting the following exception.

"main" java.lang.reflect.InaccessibleObjectException: Unable to make field transient java.lang.Object[] java.util.ArrayList.elementData accessible: module java.base does not "opens java.util" to unnamed module @2a139a55

Here is my piece of code, could you please help me?

import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.List;

public class ArrayListExample {
    public static void main(String[] args) throws Exception  {
        List l = new ArrayList<>();
        l.add(1);
        System.out.println(cap(l));
        
    }
    public static int cap(List a) throws Exception {
        Field f = ArrayList.class.getDeclaredField("elementData");
        f.setAccessible(true);
        return  (( Object[] ) f.get(a)).length;
    }
}
Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): could you please help me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Shant
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Aakash Sirohi