質問する
Java のラムダ式とストリームの使用方法? ? ?
問題の解決
ラムダ式の文法
基本構文:
[code](parameters) -> expression 或 (parameters) ->{ statements; }
例を見て学習してください!
例 1: 後続のテストの準備として Ayperson クラスを定義します。
[code]package com.evada.de; import java.util.Arrays; import java.util.List; class AyPerson{ private String id; private String name; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public AyPerson(String id, String name) { this.id = id; this.name = name; } } /** * Created by Ay on 2016/5/9. */ public class LambdaTest { public static void main(String[] args) { List<String> names = Arrays.asList("Ay", "Al", "Xy", "Xl"); names.forEach((name) -> System.out.println(name + ";")); } }
上記の例 names.forEach((name) -> System.out.println(name + “;”));
は次のようになります:
function(name){//name为参数 System.out.println(name + “;”);//方法体 }Result:
[code]Ay; Al; Xy; Xl;
例 2: 以下をコピーします。コード 上記のメイン関数に移動します
[code]List<Student> personList = new ArrayList<>(); personList.add(new Student("00001","Ay")); personList.add(new Student("00002","Al")); personList.add(new Student("00003","To")); personList.forEach((person) -> System.out.println(person.getId()+ ":" + person.getName()));
結果:
[code]00001:Ay 00002:Al 00003:To
例 3: Lambda および Stream クラスの f**ilter()** メソッド
[code]List<AyPerson> personList = new ArrayList<>(); personList.add(new AyPerson("00001","Ay")); personList.add(new AyPerson("00002","Al")); personList.add(new AyPerson("00003", "To")); //stream类中的filter方法 personList.stream() //过滤集合中person的id为00001 .filter((person) -> person.getId().equals("00001")) //将过滤后的结果循环打印出来 .forEach((person) -> System.out.println(person.getId() + ":" + person.getName()));
結果:
[code]00001:Ay
例 4: Stream クラスのcollect() メソッド,
[code] List<AyPerson> personList = new ArrayList<>(); List<AyPerson> newPersonList = null; personList.add(new AyPerson("00001","Ay")); personList.add(new AyPerson("00002","Al")); personList.add(new AyPerson("00003", "To")); //将过滤后的结果返回到一个新的List中 newPersonList = personList.stream() .filter((person) -> person.getId().equals("00002")).collect(Collectors.toList()); //打印结果集 newPersonList.forEach((person) -> System.out.println(person.getId() + ":" + person.getName()));
[code]00002:Al
Stream で使用できる便利なメソッドは数多くあります。 API 学習
上記は、Java の Lambda 式と Stream クラスの簡単な例の内容です。さらに関連する内容については、PHP 中国語に注意してください。ウェブサイト (www.php.cn)!