-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.0
-
generic
-
generic
Name: tb29552 Date: 11/10/98
/*
To reproduce, try this:
The Spec Convention:
*/
package COM.Test; // <===============
public class PTest {
PTest () {
System.out.println("COM.Test.PTest initialized");
}
public static void main(String[] args) {
COM.Test.PTest pt = new COM.Test.PTest ();
}
}
/*
The Unwritten Convention:
*/
package com.test; // <=============
public class PTest {
PTest () {
System.out.println("com.test.PTest initialized");
}
public static void main(String[] args) {
com.test.PTest pt = new com.test.PTest ();
}
}
/*
On a PC running some form of DOS ( or another case-insensitive OS),
compile both classes and attempt to run them.
*/
(Review ID: 41421)
======================================================================
- duplicates
-
JDK-4041034 win32 JVM doesn't distinguish case of class names
-
- Closed
-
- relates to
-
JDK-4120355 Problem having both COM.* and com.* in package
-
- Closed
-