Foro Wanako1
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

Foro Wanako1

Programas Gratuitos, Desatendidos y Mucho más!!!
 
PortalPortal  ÍndiceÍndice  BuscarBuscar  Últimas imágenesÚltimas imágenes  ConectarseConectarse  RegistrarseRegistrarse  
Buscar
 
 

Resultados por:
 
Rechercher Búsqueda avanzada
Los posteadores más activos del mes
ℛeℙ@¢ᴋ€r
Functional Programming in Java : Java Lambdas and  Streams Vote_lcapFunctional Programming in Java : Java Lambdas and  Streams Voting_barFunctional Programming in Java : Java Lambdas and  Streams Vote_rcap 
ПΣӨƧӨFƬ
Functional Programming in Java : Java Lambdas and  Streams Vote_lcapFunctional Programming in Java : Java Lambdas and  Streams Voting_barFunctional Programming in Java : Java Lambdas and  Streams Vote_rcap 
tano1221
Functional Programming in Java : Java Lambdas and  Streams Vote_lcapFunctional Programming in Java : Java Lambdas and  Streams Voting_barFunctional Programming in Java : Java Lambdas and  Streams Vote_rcap 
大†Shinegumi†大
Functional Programming in Java : Java Lambdas and  Streams Vote_lcapFunctional Programming in Java : Java Lambdas and  Streams Voting_barFunctional Programming in Java : Java Lambdas and  Streams Vote_rcap 
Julio 2024
LunMarMiérJueVieSábDom
1234567
891011121314
15161718192021
22232425262728
293031    
CalendarioCalendario
Últimos temas
» CCleaner Professional Plus 6.25.0.1 Multilingual
Functional Programming in Java : Java Lambdas and  Streams EmptyAyer a las 10:50 pm por tano1221

» K-Lite Codec Pack 18.4.5 Basic/Standard/Full/Mega
Functional Programming in Java : Java Lambdas and  Streams EmptyAyer a las 10:37 pm por tano1221

» VueScan Pro 9.8.35 + OCR
Functional Programming in Java : Java Lambdas and  Streams EmptyAyer a las 10:21 pm por tano1221

» Total Uninstaller 2024 v3.0.0.789 Multilingual
Functional Programming in Java : Java Lambdas and  Streams EmptyAyer a las 10:18 pm por tano1221

» Reallusion Cartoon Animator v5.24.3026.1 Multilingual
Functional Programming in Java : Java Lambdas and  Streams EmptyAyer a las 7:06 pm por 大†Shinegumi†大

» SoftMaker FlexiPDF Professional 2022.311.0614 Multilingual
Functional Programming in Java : Java Lambdas and  Streams EmptyAyer a las 7:04 pm por 大†Shinegumi†大

» EaseUS PDF Editor Pro 6.1.1.41 Build 06/28/2024 Multilingual
Functional Programming in Java : Java Lambdas and  Streams EmptyAyer a las 7:03 pm por 大†Shinegumi†大

» Fullyworked TECH Tools Pro 2024 v1.1.43.0
Functional Programming in Java : Java Lambdas and  Streams EmptyAyer a las 7:01 pm por 大†Shinegumi†大

» Steinberg SpectraLayers Pro 11.0.10 (x64)
Functional Programming in Java : Java Lambdas and  Streams EmptyAyer a las 1:42 pm por ПΣӨƧӨFƬ

Sondeo
Visita de Paises
free counters
Free counters

Comparte | 
 

 Functional Programming in Java : Java Lambdas and Streams

Ver el tema anterior Ver el tema siguiente Ir abajo 
AutorMensaje
missyou123
Miembro Mayor
Miembro Mayor


Mensajes : 70278
Fecha de inscripción : 20/08/2016

Functional Programming in Java : Java Lambdas and  Streams Empty
MensajeTema: Functional Programming in Java : Java Lambdas and Streams   Functional Programming in Java : Java Lambdas and  Streams EmptySáb Mar 11, 2023 3:13 am


Functional Programming in Java : Java Lambdas and  Streams 8f748b869eed94513b745a249c162fac

Functional Programming in Java : Java Lambdas and Streams
MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz, 2 Ch
Language: English | Duration: 4h 18m | Size: 1.5 GB
Mastering Lambdas and Streams in Java (with lots of code examples)

What you'll learn
Functional Interfaces - what they are and their relationship to lambda expressions.
Lambdas - anonymous inner class syntax versus lambda expressions.
Functional Interfaces from the API - sample code explaining Predicate/BiPredicate, Consumer/BiConsumer
Functional Interfaces from the API - sample code explaining Supplier, Function/BiFunction
Functional Interfaces from the API - sample code explaining UnaryOperator, BinaryOperator
Method References - their relationship with lambdas. Different types of method references explained with code - bound, unbound, static and constructor.
Method References - how the context helps in understanding them.
Streams - what they are, stream pipelines and stream laziness.
Streams - Terminal operations.
Streams - Terminal operations - reduce, collect() explained with code examples.
Streams - collect() using API collectors explained with code examples e.g. CollectorsDOTtoMap(), CollectorsDOTgroupingBy() and CollectorsDOTpartitioningBy()
Streams - Intermediate Operations explained with code examples e.g. filter(), distinct(), limit(), map(), flatMap() and sorted().
Streams - stateful and short-circuiting intermediate operations explained.
Streams - Primitive Streams - how to create them, what their API's look like and how to map between them.
Streams - mapping between Object streams and primitive streams and vice versa.
Optionals - what they are and why they are useful. Sample code demonstrating their use.
Parallel Streams - how to create them. Sequential versus parallel stream processing.
Requirements
Intermediate Java. Whereas my "Java 8 OCA (1Z0-808) Course" starts at the beginning, this assumes that the learner has a reasonable level of Java.
To make understanding lambdas easier, a familiarity with anonymous inner classes would help. That said, lambdas are contrasted with anonymous inner class syntax in the course.
Description
UPDATE February 2023 - streams assignment added!
UPDATE June 2022 - I have just published my Java 17, Java 11, Advanced Java 8 (1Z0-829,1Z0-819,1Z0-809) course. Lambdas and Streams are contained in that much larger course. Please check out the new course as it may be much better value.
UPDATE April 2022 - lambdas/method references assignment added!
This course is a systematic approach to explaining in both notes format and code examples, lambda expressions and streams in Java. All the code samples are included.
Topics include
Lambdas
Functional Interfaces
Lambdas and their relationship to Functional Interfaces
Lambdas in code using a custom Functional Interface
Lambdas in code using the pre-defined API Functional Interfaces
Predicate/BiPredicate
Supplier
Consumer/BiConsumer
Function/BiFunction
UnaryOperator and BinaryOperator
final and "effectively final"
Method References
bound
unbound
static
constructor
context and it's effect in understanding method references
Streams
Pipelines
Laziness
Creating streams
Terminal operations
reduce()
collect()
Collectors.toMap()
Collectors.groupingBy()
Collectors.partitioningBy()
Intermediate operations
filter(), distinct(), limit()
map(), flatMap(), sorted()
Primitive streams
Creating
API
Functional Interfaces
Mapping between primitive streams
Mapping between primitive streams and Object streams and vice versa
Optionals
Parallel streams
This course is geared towards Java Certification i.e. the Predicate lambda sections would suit Java 8 OCA (1Z0-808). The remaining lambda sections and the streams sections would suit both Java 8 OCP (1Z0-809) and Java 11 (1Z0-819). This course explains the concepts through small, simple, targeted code examples.
For those who don't know me, my "Complete Java 8 OCA (1Z0-808) Java Certification Course" is, at the time of writing, the highest rated Java 8 OCA course on Udemy. I am a lecturer since 2002 and have taught the OCA and OCP syllabii since 2013 on behalf of a highly regarded software company. On completion of the courses with me, graduates then face the company's own internal Java Certification exam (similar in style to Oracle's). I have no visibility into the questions they will face. It is a 3 hour long intensive exam. The company are delighted with the pass rate (100% since year 1).
I love teaching and this course has all my experience in explaining lambdas and streams in Java. I am delighted that Enthuware (the excellent Java certification training tool), have, in their explanations, linked to my YouTube channel.
Who this course is for
Anyone interested in learning Lambdas and Streams (the Functional Programming aspects of Java Cool.

Functional Programming in Java : Java Lambdas and  Streams 4191276c8e4d6764dedd8b9cf8941da8

Download link

rapidgator.net:
Código:

https://rapidgator.net/file/b868072f9f633fb4946428428729a958/kjaxh.Functional.Programming.in.Java..Java.Lambdas.and.Streams.part1.rar.html
https://rapidgator.net/file/635852b93afe7bd84f4049f0d78c5f46/kjaxh.Functional.Programming.in.Java..Java.Lambdas.and.Streams.part2.rar.html

uploadgig.com:
Código:

https://uploadgig.com/file/download/158F49e08eAb8e7e/kjaxh.Functional.Programming.in.Java..Java.Lambdas.and.Streams.part1.rar
https://uploadgig.com/file/download/8794794c61436fd9/kjaxh.Functional.Programming.in.Java..Java.Lambdas.and.Streams.part2.rar

nitroflare.com:
Código:

https://nitroflare.com/view/F8F2607801EA3AD/kjaxh.Functional.Programming.in.Java..Java.Lambdas.and.Streams.part1.rar
https://nitroflare.com/view/304A5954AAB290A/kjaxh.Functional.Programming.in.Java..Java.Lambdas.and.Streams.part2.rar

ddownload.com:
Código:

https://ddownload.com/22k5oddgc03n/kjaxh.Functional.Programming.in.Java..Java.Lambdas.and.Streams.part1.rar
https://ddownload.com/6yqfdv5vtdj8/kjaxh.Functional.Programming.in.Java..Java.Lambdas.and.Streams.part2.rar
Volver arriba Ir abajo
 

Functional Programming in Java : Java Lambdas and Streams

Ver el tema anterior Ver el tema siguiente Volver arriba 
Página 1 de 1.

 Temas similares

-
» Functional-style Programming in Java using Lambdas & Streams
» Java 7 & Java 8 new features with Lambdas & Streams
» Functional Programming + Lambdas, Method References, Streams
» Functional Programming + Lambdas, Method References, Streams (12/2020)
» Kodeco - Programming in Kotlin Collections & Lambdas

Permisos de este foro:No puedes responder a temas en este foro.
Foro Wanako1 :: Programas o Aplicaciónes :: Ayuda, Tutoriales-