Lambda Syntax & Scope
Learn the syntax and scope rules of Java lambdas.
Lambda Syntax & Scope is a free Java Academy lesson on CoddyKit — lesson 1 of 3. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Java Academy learning path, one of 3 lessons in the course, and your progress syncs across the web and the CoddyKit app.
Intro
Lambdas are short blocks of code like methods, but written inline. They make code concise.
Syntax
Syntax: (parameters) -> expression or (parameters) -> { statements }.
Code: Runnable
This lambda implements Runnable with one line.
public class Main {
public static void main(String[] args) {
Runnable r = () -> System.out.println("Hello Lambda!");
r.run();
}
}
Parameters
Lambdas can take parameters. Types are inferred if obvious.
Code: BiFunction
This lambda adds two integers.
public class Main {
public static void main(String[] args) {
java.util.function.BiFunction<Integer, Integer, Integer> add = (a, b) -> a + b;
System.out.println("Sum: " + add.apply(2, 3));
}
}
Scope
Lambdas can access outer variables, but they must be final or effectively final.
Lambda scope check
Quick check: Which statement is true about variables used inside lambdas?
Recap
Recap: Lambdas provide short syntax for inline code. They can take parameters and capture outer variables carefully.
Frequently asked questions
Is the “Lambda Syntax & Scope” lesson free?
Yes — the full text of “Lambda Syntax & Scope” is free to read here on the web, and the Java Academy course includes 3 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Java Academy course, upgrade to CoddyKit PRO.
What will I learn in “Lambda Syntax & Scope”?
Learn the syntax and scope rules of Java lambdas. You practise Java Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start Java Academy?
No prior experience is required. Java Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 1 of 3, so you can start here or from the beginning and move at your own pace.
How long does the “Lambda Syntax & Scope” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this Java Academy lesson?
Yes. Every Java Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- Lambda Syntax & Scope
- Functional Interfaces
- Method References & Optional