FIX: IllegalAccessError Using Private Inherited ConstructorID: Q177180
|
If 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, however, does catch this error. When the applet or application is run the following error is generated by the Microsoft virtual machine:
NOTE: Non-Microsoft virtual machines may not throw this error. It is, however, correct behavior to do so.java.lang.IllegalAccessError: A: method <init>()V is inaccessible
Use the compiler shipped with SDK for Java 2.0x 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'
This problem was corrected in Jvc.exe version 1.02.4337, which ships in the SDK for Java version 2.0.
public class TestError
{
public static void main( String[] args )
{
boolean returnValue = true;
try
{
// The compiler should flag this line as an error
B obj = new B();
returnValue = true;
}
catch( Throwable e )
{
e.printStackTrace();
returnValue = false;
}
System.out.println( "Passed = " + returnValue );
}
}
class A
{
private A() {}
}
class B extends A
{
public B() {}
}
For the latest Knowledge Base articles and other support information on Visual J++ and the SDK for Java, see the following pages 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
Keywords : kbcode kberrmsg kbSDKJava200fix kbVJ110bug JVM
Version : WINDOWS:1.1
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: July 26, 1999