当前位置:   article > 正文

Java之内部类、匿名内部类、Lambda表达式和方法引用_lomok表达式语法内部匿名类

lomok表达式语法内部匿名类

本章讲解内部类 匿名内部类 Lambda表达式 方法引用

目录

1.内部类:

2.匿名内部类

3.Lambda表达式

4.方法引用


1.内部类

内部类顾名思义就是一个类里面再次定义一个类,这样做有好处也有坏处,好处是如果使用了内部类,那么这两个类之间的通信将会十分轻松。比如私有属性传递,但是缺点也很明显,就是内部类会导致类的结构复杂化。

内部类访问外部类私有化属性,方法的格式 与其实例化过程:

实例化过程

外部类.内部类  对象名称= new 外部类().内部类()

  1. public class OuterClass {
  2. public class InnerClass {
  3. public void display() {
  4. System.out.println("This is the inner class.");
  5. }
  6. }
  7. }
  8. public class Example {
  9. public static void main(String[] args) {
  10. OuterClass.InnerClass obj = new OuterClass().new InnerClass();
  11. obj.display();
  12. }
  13. }

访问外部私有属性和方法等

str = 外部类.this.str

当实现static定义内部类时候,其访问外部类的属性方法的格式和实例化过程:

1.实例化过程

外部类.内部类 实例化对象名称 = new 外部类.内部类();

2.访问外部私有属性和方法

str = 外部类.str

  1. public class OuterClass {
  2. private static int outerStaticField = 100;
  3. private int outerField = 200;
  4. public static class InnerClass {
  5. public void display() {
  6. System.out.println("Outer static field: " + outerStaticField);
  7. }
  8. }
  9. public static void outerStaticMethod() {
  10. System.out.println("Calling outer static method");
  11. }
  12. }
  13. public class Example {
  14. public static void main(String[] args) {
  15. OuterClass.InnerClass obj = new OuterClass.InnerClass();
  16. obj.display();
  17. OuterClass.outerStaticMethod();
  18. }
  19. }

注意:可以直接访问外部类的静态成员(包括静态属性和静态方法),但不能直接访问外部类的非静态成员(非静态属性和非静态方法)。

两者的区别:

1.当用static定义内部类时候,那么内部类其实就是一个独立的个体了所以可以不需要实例化其外部类就嗯呢更直接实例化内部类

除了内部类还可以有内部接口,接口内部实现抽象类,接口子类定义内部类

1.内部接口:

  1. public class Example {
  2. interface InnerInterface {
  3. void display();
  4. }
  5. public static void main(String[] args) {
  6. InnerInterface innerObj = new InnerInterface() {
  7. public void display() {
  8. System.out.println("Inner interface implementation");
  9. }
  10. };
  11. innerObj.display();
  12. }
  13. }

2.接口内部实现抽象类

  1. public interface OuterInterface {
  2. abstract class InnerAbstractClass {
  3. abstract void display();
  4. }
  5. }
  6. public class Example implements OuterInterface.InnerAbstractClass {
  7. public void display() {
  8. System.out.println("Implementation of inner abstract class");
  9. }
  10. public static void main(String[] args) {
  11. Example obj = new Example();
  12. obj.display();
  13. }
  14. }

3.接口子类定义内部类

  1. interface OuterInterface {
  2. void outerMethod();
  3. class InnerClass {
  4. void innerMethod() {
  5. System.out.println("Inner class method");
  6. }
  7. }
  8. }
  9. class Example implements OuterInterface {
  10. public void outerMethod() {
  11. InnerClass innerObj = new InnerClass();
  12. innerObj.innerMethod();
  13. }
  14. public static void main(String[] args) {
  15. Example obj = new Example();
  16. obj.outerMethod();
  17. }
  18. }

4.方法种定义内部类

虽然一般内部类在类的哪里都可以进行定义,到那时,一般情况下,内部类都是定义在外部类的方法里面

  1. public class OuterClass {
  2. public void outerMethod() {
  3. class InnerClass {
  4. void innerMethod() {
  5. System.out.println("Inner method");
  6. }
  7. }
  8. InnerClass innerObj = new InnerClass();
  9. innerObj.innerMethod();
  10. }
  11. public static void main(String[] args) {
  12. OuterClass obj = new OuterClass();
  13. obj.outerMethod();
  14. }
  15. }

2.匿名内部类

问题引出:由于一般情况下一个public类对应一个.java文件,那么如果类功能简单情况下,很多的类下就会产生大量的java类文件。所以通过匿名内部类可以不产生子类,就能完成子类带来的功能。

  1. public class Main {
  2. public static void main(String[] args) {
  3. // 创建接口对象并调用方法
  4. MyInterface myInterface = new MyInterface() {
  5. @Override
  6. public void doSomething() {
  7. System.out.println("匿名内部类实现的方法");
  8. }
  9. };
  10. myInterface.doSomething(); // 输出:匿名内部类实现的方法
  11. }
  12. }
  13. // 定义接口
  14. interface MyInterface {
  15. void doSomething();
  16. }


(重点掌握)3.Lambda表达式

匿名内部类由于其实现是比较复杂的,所以就诞生了Lambda表达式,这种表达式极大的简化的匿名内部类的操作

实现Lambda的语法有两种:

1.()->{方法体}

  1. Runnable runnable = () -> {
  2. System.out.println("Hello, world!");
  3. };

2.()->语句

Calculator calculator = (a, b) -> a + b;

@FunctionInterface注解

表示函数式接口,接口内只能出现一种抽象类方法

  1. @FunctionalInterface
  2. interface Calculator {
  3. int calculate(int a, int b);
  4. }
  5. public class LambdaExample {
  6. public static void main(String[] args) {
  7. Calculator add = (a, b) -> a + b;
  8. int result = add.calculate(10, 5);
  9. System.out.println("Addition result: " + result);
  10. Calculator subtract = (a, b) -> a - b;
  11. result = subtract.calculate(10, 5);
  12. System.out.println("Subtraction result: " + result);
  13. }
  14. }


4.方法引用

引用并不陌生,在以前的java的实例中就有着大量的引用,但是引用的大部分都是实例化对象,或者引用值,这里是对方法的引用。方法的引用分为三类:引用静态方法 引用某个对象的方法 引用特定类型的方法 引用构造方法

方法引用有以下四种:

引用静态方法 :                 类名称::static方法名称

  1. @FunctionalInterface
  2. interface Calculator {
  3. public void caculate();
  4. }
  5. // 静态方法
  6. class MathUtils {
  7. public static int multiply(int a, int b) {
  8. return a * b;
  9. }
  10. }
  11. // 方法引用
  12. Calculator calculator = MathUtils::multiply;
  13. int result = calculator.calculate(5, 3);
  14. System.out.println("Multiplication result: " + result);

引用某个对象的方法 :     实例化对象::普通方法

  1. // 对象方法
  2. class StringUtils {
  3. public int getLength(String str) {
  4. return str.length();
  5. }
  6. }
  7. // 方法引用
  8. StringUtils stringUtils = new StringUtils();
  9. Calculator calculator = stringUtils::getLength;
  10. int result = calculator.calculate("Hello");
  11. System.out.println("String length: " + result);

引用特定类型的方法  :    特定类::普通方法

  1. // 指定类型的方法
  2. class StringUtils {
  3. public static boolean startsWith(String str, String prefix) {
  4. return str.startsWith(prefix);
  5. }
  6. }
  7. // 方法引用
  8. BiPredicate<String, String> startsWith = StringUtils::startsWith;
  9. boolean result = startsWith.test("Hello", "He");
  10. System.out.println("Starts with 'He': " + result);

引用构造方法:                   类名称::new

  1. // 构造方法
  2. class Person {
  3. private String name;
  4. public Person(String name) {
  5. this.name = name;
  6. }
  7. public String getName() {
  8. return name;
  9. }
  10. }
  11. // 方法引用
  12. Function<String, Person> personFactory = Person::new;
  13. Person person = personFactory.apply("John");
  14. System.out.println("Person name: " + person.getName());

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/683201
推荐阅读
相关标签
  

闽ICP备14008679号