Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4188645

Package Name Upper/Lower Case problems at run-time

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.2.0
    • hotspot
    • 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)
      ======================================================================

            Unassigned Unassigned
            tbell Tim Bell
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: