BUG: IllegalAccessError Using Private Inherited ConstructorLast reviewed: January 29, 1998Article ID: Q177180 |
The information in this article applies to:
SYMPTOMSIf a class (B) inherits from a class (A) that has a private default constructor, an attempt to instantiate class (B) should result in a compiler error. The compiler shipped with Visual J++ (version 1.01.7022) does not catch this error. The Microsoft Virtual Machine for Java, however, does catch this error. When the applet or application is run the following error is generated by the Virtual Machine:
java.lang.IllegalAccessError: A: method <init>()V is inaccessibleNOTE: Non-Microsoft virtual machines may not throw this error. It is, however, correct behavior to do so.
RESOLUTIONUse the compiler shipped with SDK for Java 2.0 with Visual J++. You can do this by replacing the compiler file in Visual J++ with three files from the Microsoft SDK for Java. First, save a copy of the compiler (Jvc.exe) from your existing Visual J++ installation. Next, copy Jvc.exe, Jps.dll, and Msjvc.dll into your Visual J++ directory. Projects will then build using the new compiler. The new compiler will catch this problem by generating the following error message:
error J0147: Cannot access private member 'A()' in class 'A' from class 'B' STATUSThis problem was corrected in jvc version 1.02.4337, which ships in the SDK for Java version 2.0
MORE INFORMATION
Steps to Reproduce Behavior
REFERENCESFor the latest Knowledge Base articles and other support information on Visual J++ and the SDK for Java, see the following page on the Microsoft Technical Support site:
http://support.microsoft.com/support/visualj/ http://support.microsoft.com/support/java/ |
Additional query words: protected private default constructor
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |