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

Inaccuracy in totorial

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: P4 P4
    • None
    • 8u25
    • docs
    • x86_64
    • windows_7

      A DESCRIPTION OF THE PROBLEM :
      The statement within lambda "System.out.println("x = " + x);" does not try to access the FirstLevel.x variable, but rather the parameter of the methodInFirstLevel.

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      where the lambda expression myConsumer tries to access the methodInFirstLevel parameter:

      System.out.println("x = " + x);
      ACTUAL -
      where the lambda expression myConsumer tries to access the FirstLevel.x variable:

      System.out.println("x = " + x);

      URL OF FAULTY DOCUMENTATION :
      https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html

            Unassigned Unassigned
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: