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

switch on strings

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Won't Fix
    • Icon: P3 P3
    • None
    • 1.0
    • tools
    • sparc
    • solaris_2.4

      From daemon@java Sun Oct 1 18:18 PDT 1995
      To: java-interest@java
      Subject: switch is too limiting


      So I've discovered, through the time-honored debugging method known as the
      compiler error, that switch statements only work if the test and the constant
      are both ints or can be cast to ints (i.e. numerics or chars).

      sigh.

      I would have hoped that switch in java would be more flexible than
      that, and that you could switch with strings or other objects. Yes,
      I know that switch would only work if == was meaningful for object
      values, and that gets into the whole operator overloading discussion,
      so I won't start that.

      But it does seem awfully limiting to me. I would love to be able to
      use strings as identifiers, for example, and to be able to do something
      like this:

      switch (alignment) {
          case "left" : {
            // code to align stuff left
          }
          case "right" : {
            // code to align stuff right
          }
          case "center" : {
            // code to align stuff center
          }
      }

      Instead, I either have to use a whole lot of nested ifs (in which I can
      do alignment.equals("right")), or set up integer constants to represent
      everything I wanted to be a string in the first place.

      sigh.

      Maybe in 2.0?


      Laura

            fyellinsunw Frank Yellin (Inactive)
            ahoffsunw Arthur Hoff (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: