Le Tutoriel de Java BiConsumer
1. BiConsumer
Dans Java 8, BiConsumer est une functional interface qui représente un opérateur qui accepte deux paramètres d'entrée et ne renvoie rien.
BiConsumer
@FunctionalInterface
public interface BiConsumer<T, U> {
void accept(T t, U u);
default BiConsumer<T, U> andThen(BiConsumer<? super T, ? super U> after);
}
Voir plus: Consumer est une interface similaire à BiConsumer, mais elle n'accepte qu'un seul paramètre:
Par exemple:
BiConsumerEx1.java
package org.o7planning.biconsumer.ex;
import java.util.function.BiConsumer;
public class BiConsumerEx1 {
public static void main(String[] args) {
// Create a BiConsumer object directly
BiConsumer<String, String> greeter
= (firstName, lastName) -> System.out.println("Hello " + firstName+ " " + lastName);
greeter.accept("James", "Smith");
}
}
Output:
Hello James Smith
Ci-dessous une liste de méthodes dans le package java.util utilisant BiConsumer:
Modifier and Type | Method and Description |
void | IdentityHashMap.forEach(BiConsumer<? super K,? super V> action) |
void | TreeMap.forEach(BiConsumer<? super K,? super V> action) |
void | LinkedHashMap.forEach(BiConsumer<? super K,? super V> action) |
void | Hashtable.forEach(BiConsumer<? super K,? super V> action) |
void | HashMap.forEach(BiConsumer<? super K,? super V> action) |
void | WeakHashMap.forEach(BiConsumer<? super K,? super V> action) |
default void | Map.forEach(BiConsumer<? super K,? super V> action) |
Exemple: Utiliser la méthode Map.forEach(BiConsumer):
BiConsumerEx2.java
package org.o7planning.biconsumer.ex;
import java.util.HashMap;
import java.util.Map;
import java.util.function.BiConsumer;
public class BiConsumerEx2 {
public static void main(String[] args) {
BiConsumer<String, String> printer
= (phoneNumber, fullName) -> System.out.println(phoneNumber + " - " + fullName);
Map<String, String> contacts = new HashMap<String,String>();
contacts.put("1111 2222", "James Smith");
contacts.put("1111 3333", "Michael Smith");
contacts.put("1233 5555", "David Garcia");
contacts.forEach(printer);
}
}
Output:
1233 5555 - David Garcia
1111 2222 - James Smith
1111 3333 - Michael Smith
2. BiConsumer + Method reference
Si une méthode statique prend deux paramètres et ne renvoie rien, alors sa référence peut être considérée comme un BiConsumer.
Par exemple:
BiConsumer_mRef_ex1.java
package org.o7planning.biconsumer.ex;
import java.util.HashMap;
import java.util.Map;
import java.util.function.BiConsumer;
public class BiConsumer_mRef_ex1 {
public static void main(String[] args) {
Map<String, String> contacts = new HashMap<String,String>();
contacts.put("1111 2222", "James Smith");
contacts.put("1111 3333", "Michael Smith");
contacts.put("1233 5555", "David Garcia");
// Static method reference:
BiConsumer<String, String> bc = MyUtils::printContactInfo;
contacts.forEach(bc);
}
}
class MyUtils {
// Static method:
public static void printContactInfo(String phone, String name) {
System.out.println("Phone: " + phone + " / Full Name: " + name);
}
}
Output:
Phone: 1233 5555 / Full Name: David Garcia
Phone: 1111 2222 / Full Name: James Smith
Phone: 1111 3333 / Full Name: Michael Smith
Example: BiConsumer + Non-static method reference:
BiConsumer_mRef_ex2.java
package org.o7planning.biconsumer.ex;
import java.util.HashMap;
import java.util.Map;
import java.util.function.BiConsumer;
public class BiConsumer_mRef_ex2 {
public static void main(String[] args) {
Map<String, String> contacts = new HashMap<String,String>();
contacts.put("1111 2222", "James Smith");
contacts.put("1111 3333", "Michael Smith");
contacts.put("1233 5555", "David Garcia");
CardTemplate template = new CardTemplate("Designed by Tom");
// Non-static method reference:
BiConsumer<String, String> bc = template::printCard;
contacts.forEach(bc);
}
}
class CardTemplate {
private String someInfo;
public CardTemplate(String someInfo) {
this.someInfo = someInfo;
}
// Non-static Method:
public void printCard(String phone, String name) {
System.out.println("--- ~~~ ---");
System.out.println("Full Name: " + name);
System.out.println("Phone: " + phone);
System.out.println(someInfo);
System.out.println();
}
}
Output:
--- ~~~ ---
Full Name: David Garcia
Phone: 1233 5555
Designed by Tom
--- ~~~ ---
Full Name: James Smith
Phone: 1111 2222
Designed by Tom
--- ~~~ ---
Full Name: Michael Smith
Phone: 1111 3333
Designed by Tom
3. andThen(BiConsumer after)
La méthode andThen(after) renvoie un BiConsumer associé. D'abord, BiConsumer actuel est convoqué, ensuite, after sera appelé. Si une erreur se produit au cours de l'une des deux étapes susmentionnées, l'erreur est transférée à l'appelant (caller). Si une erreur se produit au niveau du BiConsumer actuel, after sera ignoré.
andThen method
default BiConsumer<T, U> andThen(BiConsumer<? super T, ? super U> after) {
Objects.requireNonNull(after);
return (l, r) -> {
accept(l, r);
after.accept(l, r);
};
}
Par exemple:
BiConsumer_andThen_ex1.java
package org.o7planning.biconsumer.ex;
import java.util.HashMap;
import java.util.Map;
import java.util.function.BiConsumer;
public class BiConsumer_andThen_ex1 {
public static void main(String[] args) {
Map<String, String> contacts = new HashMap<String,String>();
contacts.put("1111 2222", "James Smith");
contacts.put("1111 3333", "Michael Smith");
contacts.put("1233 5555", "David Garcia");
BiConsumer<String, String> printer1
= (phoneNumber, fullName) -> System.out.println(phoneNumber + " - " + fullName);
BiConsumer<String, String> printer2
= (phoneNumber, fullName) -> System.out.println(phoneNumber + " - " + fullName.toUpperCase());
contacts.forEach(printer1.andThen(printer2));
}
}
Output:
1233 5555 - David Garcia
1233 5555 - DAVID GARCIA
1111 2222 - James Smith
1111 2222 - JAMES SMITH
1111 3333 - Michael Smith
1111 3333 - MICHAEL SMITH
4. Example: Map to Map
Exemple: Un objet Map<String,Integer> contient des mappages entre le numéro d'employé et le salaire. Créer un objet Map<String,Integer> similaire avec un double salaire.
BiConsumer_m2m_ex1.java
package org.o7planning.biconsumer.ex;
import java.util.HashMap;
import java.util.Map;
import java.util.stream.Collectors;
public class BiConsumer_m2m_ex1 {
public static void main(String[] args) {
// String employeeNumber --> Integer salary.
Map<String, Integer> empSalaryMap = new HashMap<String, Integer>();
empSalaryMap.put("E01", 1000);
empSalaryMap.put("E02", 1500);
empSalaryMap.put("E03", 3000);
Map<String, Integer> newEmpSalaryMap //
= empSalaryMap.entrySet() // Set<Map.Entry<String,Integer>>
.stream() // // Stream<Map.Entry<String,Integer>>
// Call method:
// collect(Supplier<R>, BiConsumer<R, ? extends Map.Entry<String,Integer>>)
.collect(Collectors.toMap(entry -> entry.getKey(), entry -> 2 * entry.getValue()));
System.out.println("Origin Map: " + empSalaryMap);
System.out.println();
System.out.println("New Map: " + newEmpSalaryMap);
}
}
Output:
Origin Map: {E02=1500, E01=1000, E03=3000}
New Map: {E02=3000, E01=2000, E03=6000}
En règle générale, il est possible de traiter un objet Map<K,V> pour former une autre Map<K2,V2>. Voir plus d'articles ci-dessous:
- Java Stream.collect method
Java Basic
- Personnaliser le compilateur Java pour traiter votre annotation (Annotation Processing Tool)
- Programmation Java pour l'équipe utilisant Eclipse et SVN
- Le Tutoriel de Java WeakReference
- Le Tutoriel de Java PhantomReference
- Tutoriel sur la compression et la décompression Java
- Configuration d'Eclipse pour utiliser le JDK au lieu de JRE
- Méthodes Java String.format() et printf()
- Syntaxe et nouvelles fonctionnalités de Java 8
- Expression régulière en Java
- Tutoriel de programmation Java multithreading
- Bibliothèques de pilotes JDBC pour différents types de bases de données en Java
- Tutoriel Java JDBC
- Obtenir des valeurs de colonne automatiquement incrémentées lors de l'insertion d'un enregistrement à l'aide de JDBC
- Le Tutoriel de Java Stream
- Le Tutoriel de Java Functional Interface
- Introduction à Raspberry Pi
- Le Tutoriel de Java Predicate
- Classe abstraite et interface en Java
- Modificateurs d'accès en Java
- Le Tutoriel de Java Enum
- Le Tutoriel de Java Annotation
- Comparer et trier en Java
- Le Tutoriel de Java String, StringBuffer et StringBuilder
- Tutoriel de gestion des exceptions Java
- Le Tutoriel de Java Generics
- Manipulation de fichiers et de répertoires en Java
- Le Tutoriel de Java BiPredicate
- Le Tutoriel de Java Consumer
- Le Tutoriel de Java BiConsumer
- Qu'est-ce qui est nécessaire pour commencer avec Java?
- L'histoire de Java et la différence entre Oracle JDK et OpenJDK
- Installer Java sur Windows
- Installer Java sur Ubuntu
- Installer OpenJDK sur Ubuntu
- Installer Eclipse
- Installer Eclipse sur Ubuntu
- Le Tutoriel Java pour débutant
- Histoire des bits et des bytes en informatique
- Types de données dans Java
- Opérations sur les bits
- Le Tutoriel de instruction Java If else
- Le Tutoriel de instruction Java Switch
- Les Boucles en Java
- Les Tableaux (Array) en Java
- JDK Javadoc au format CHM
- Héritage et polymorphisme en Java
- Le Tutoriel de Java Function
- Le Tutoriel de Java BiFunction
- Exemple de Java encoding et decoding utilisant Apache Base64
- Le Tutoriel de Java Reflection
- Invocation de méthode à distance en Java
- Le Tutoriel de Java Socket
- Quelle plate-forme devez-vous choisir pour développer des applications de bureau Java?
- Le Tutoriel de Java Commons IO
- Le Tutoriel de Java Commons Email
- Le Tutoriel de Java Commons Logging
- Comprendre Java System.identityHashCode, Object.hashCode et Object.equals
- Le Tutoriel de Java SoftReference
- Le Tutoriel de Java Supplier
- Programmation orientée aspect Java avec AspectJ (AOP)
Show More
- Tutoriels de programmation Java Servlet/JSP
- Tutoriels de Java Collections Framework
- Tutoriels Java API pour HTML & XML
- Tutoriels Java IO
- Tutoriels Java Date Time
- Tutoriels Spring Boot
- Tutoriels Maven
- Tutoriels Gradle
- Tutoriels Java Web Service
- Tutoriels de programmation Java SWT
- Tutoriels de JavaFX
- Tutoriels Java Oracle ADF
- Tutoriels Struts2
- Tutoriels Spring Cloud