This is the mail archive of the
java-discuss@sourceware.cygnus.com
mailing list for the Java project.
Casting / Inheritance Problem
- To: <java-discuss at sourceware dot cygnus dot com>
- Subject: Casting / Inheritance Problem
- From: "Jon Beniston" <jon at sentinelware dot freeserve dot co dot uk>
- Date: Sun, 16 Jan 2000 03:39:12 -0000
- Organization: Sentinelware Developments
- Reply-To: "Jon Beniston" <jb7216 at bristol dot ac dot uk>
Hi,
I was messing aroung the other day with the following code:
...
Object o = System.getSecurityManager();
...
When compiling GCJ emits:
Test.java:7: Incompatible type for declaration. Can't convert
`java.lang.SecurityManager' to `java.lang.Object'.
Object o = System.getSecurityManager();
^
Any thoughts?
Jon.