执行以下代码时,我很困惑:
@Test
public void testAccessible() throws NoSuchMethodException {
Constructor<LinkedList> constructor = LinkedList.class.getConstructor();
Assert.assertTrue(constructor.isAccessible());
}
断言失败,但 LinkedList 类具有public
默认构造函数。那么为什么 isAccessible() 返回 false 呢?