-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
1.4.0
-
x86
-
windows_nt
jdk1.4
for example,
Class.forName(java.lang.Character.UnicodeBlock);
does not find class object for the nested class.
To get around this problem I had to
class.forName(java.lang.Character$UnicodeBlock);
bae-chul.kim@eng 2000-10-11
for example,
Class.forName(java.lang.Character.UnicodeBlock);
does not find class object for the nested class.
To get around this problem I had to
class.forName(java.lang.Character$UnicodeBlock);
bae-chul.kim@eng 2000-10-11
- relates to
-
JDK-4628117 (spec) clarification for methods which return/require class names (use of '$')
- Open