
Explanation of Solution
Anonymous inner class:
- It is other inner class in the inner class that is defined without a name.
- It is used to the combine the process defining and instance creation of the class in one single step.
Modified code:
//define the class TestLamda
public class TestLambda
{
//main method
public static void main(String[] args)
{
//class gets initiated
TestLambda test = new TestLambda();
/*action gets defined using anonymous inner function*/
test.setAction2(new T2()
{
@Override
//method definition
public void m2(Double d)
{
//display the value
System.out.print(d + "");
}
});
/*action gets defined using anonymous inner class*/
System.out.println(test.getValue(new T3()
{
@Override
//method definition
public int m3(int e1, int e2)
{
//return value
return e1 + e2;
}
}));
//display the value
System...

Want to see the full answer?
Check out a sample textbook solution
Chapter 15 Solutions
Introduction to Java Programming and Data Structures: Brief Version (11th Global Edition)
- EBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTMicrosoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,C++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage Learning
- C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology PtrProgramming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:Cengage



