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

Switch block for Class

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Won't Fix
    • Icon: P5 P5
    • None
    • 7
    • specification
    • x86
    • windows_7

      A DESCRIPTION OF THE REQUEST :
      A natural extension of multicatch added in Java7 is the ability to switch() on Class instances. For example:

      try
      {
        future.get();
      }
      catch (InterruptedException | ExecutionException e)
      {
        // Handle exception wrapped by ExecutionException
        switch (e.getCause().getClass())
        {
          case IOException.class:
          {
          }
          case IllegalArgumentException.class:
          {
          }
          // etc
        }
      }

      JUSTIFICATION :
      Improved readability. The alternative is a long list of if/else "instanceof" statements.

            darcy Joe Darcy
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: