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

String.substring(int,int) implementation does not match API

XMLWordPrintable

    • 1.0prebeta1
    • sparc
    • solaris_2.4
    • Not verified

      In the java.lang.String API (doc:///doc/api/java.lang.String.html),
      the substring(int beginIndex,int endIndex) method is claimed to return
      a substring from beginIndex (inclusive) to endIndex (exclusive).

      In the alpha3 implementation, however, the returned substring is
      independent of the order of arguments -- what it returns is from lower
      index (inclusive) to upper index (exclusive). For example, the
      following code compiles, runs, and prints "2345".

      class xxx {
          public static void main (String args[]) {
      String s = "0123456789";
      System.out.println (s.substring(6,2));
          }
      }

            ahoffsunw Arthur Hoff (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: