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

incorrect initialization analysis

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • 1.0
    • tools
    • sparc
    • solaris_2.5

      The following program reports that a variable may not have been initialized.
      In fact, there are no conditions under which it will not be initialized.

      import java.io.*;

      public class bug
      {
          void foo() {
      String s;

      try {
      InputStream in = new FileInputStream("/dev/null");
      s = "abc";
      }
      catch (Throwable t) {
      s = "def";
      }
              finally {
      System.out.println(s);
      }
          }
      }

            fyellinsunw Frank Yellin (Inactive)
            jjg Jonathan Gibbons
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: