πŸ¦™οΈ Java. λžŒλ‹€ ν‘œν˜„μ‹

Seokjun HongΒ·2022λ…„ 4μ›” 18일
0
post-thumbnail

πŸ¦™οΈ λžŒλ‹€ ν‘œν˜„μ‹(Lambda Expression)


λžŒλ‹€μ‹μ€ μžλ°”8 버전에 μΆ”κ°€λ˜μ—ˆλ‹€. λ§€κ°œλ³€μˆ˜λ₯Ό λ°›μ•„ 값을 λ°˜ν™˜ν•˜λŠ” 짧은 μ½”λ“œ 블둝, κΈ°μ‘΄ μžλ°” Method와 μœ μ‚¬ν•˜μ§€λ§Œ 이름이 ν•„μš”ν•˜μ§€ μ•ŠμœΌλ©°(읡λͺ…μ„±) λ©”μ„œλ“œ λ³Έλ¬Έμ—μ„œ λ°”λ‘œ κ΅¬ν˜„ν•  수 μžˆλ‹€. λžŒλ‹€ ν‘œν˜„μ‹μ€ ν•¨μˆ˜ν˜• ν”„λ‘œκ·Έλž˜λ°μ— λŒ€ν•œ Java의 첫 번째 단계이닀.

πŸš– Syntax


단일 λ§€κ°œλ³€μˆ˜μ™€ ν‘œν˜„μ‹μ΄ ν¬ν•¨λœ κ°€μž₯ κ°„λ‹¨ν•œ ν˜•νƒœμ˜ λžŒλ‹€μ‹

parameter -> expression

λ‘˜ μ΄μƒμ˜ λ§€κ°œλ³€μˆ˜λ₯Ό μ‚¬μš©ν•˜λ €λ©΄ κ΄„ν˜Έλ‘œ λ¬ΆλŠ”λ‹€.

(parameter1, parameter2) -> expression
λ˜λŠ”
(parameter1, parameter2) -> { code block }

πŸ§ͺ️ λžŒλ‹€ ν‘œν˜„μ‹ μ‚¬μš©


1. ArrayList.forEach() μ˜ˆμ‹œ

import java.util.ArrayList;

public class Main {
	public static void main(String[] args) {
    	ArrayList<Integer> n = new ArrayList<Integer>();
        n.add(1);
        n.add(2);
        n.add(3);
        n.add(4);
        n.forEach( (m) -> {System.out.println(m); );
        // n.forEach(System.out::println)도 κ°€λŠ₯
    }
}

ArrayList의 λͺ¨λ“  ν•­λͺ©μ„ printν•˜λ €λ©΄ forEach() λ©”μ„œλ“œμ—μ„œ λžŒλ‹€μ‹μ„ μ‚¬μš©ν•  수 μžˆλ‹€.

ArrayList.forEach(Consumer<? super E> action)

2. λžŒλ‹€μ‹ 유/무 μ˜ˆμ‹œ

  • λžŒλ‹€μ‹ 없이
interface Drawable {
	public void draw()
}
public class LambdaExample {
	public static void main(String[] args) {
		int width = 10;

		// λžŒλ‹€μ‹ 없이
		Drawable d = new Drawable() {
			public void draw() { System.out.println("Drawing " + width ); }
		};
		d.draw();
	}
}
  • λžŒλ‹€μ‹ 포함
@FunctionalInterface
interface Drawable {
	public void draw();
}
public class LambdaExample {
	public static void main(String[] args) {
		int width = 10;

		// λžŒλ‹€μ‹
		Drawable d = () -> {
			System.out.println("Drawing " + width);
		};
		d.draw();
	}
}

μœ„ 두 μ½”λ“œ λͺ¨λ‘ 좜λ ₯값은 Drawing 10 으둜 κ°™λ‹€.
ν™•μ‹€νžˆ λžŒλ‹€μ‹μ„ ν¬ν•¨ν•˜λ‹ˆ μ½”λ“œκ°€ κ°„κ²°ν•΄μ‘Œλ‹€.

⭐️⭐️

profile
fake it till you make it

0개의 λŒ“κΈ€

κ΄€λ ¨ μ±„μš© 정보