* Cantinho Satkeys

Refresh History
  • cereal killa: Todos os anos e preciso sempre a pedir esmolas e um simples gesto de nem que seja 1€ que fosse dividido por alguns ajudava, uma coisa e certa mesmo continuando isto vai levar volta a como se tem acesso aos tópicos, nunca se quis implementar esta ideia mas quem não contribuir e basta 1 € por ano não terá acesso a sacar nada, vamos ver desenrolar disto mais ate dia 7,finalmente um agradecimento em nome do satkeys a quem já fez a sua doação, obrigada
    Hoje às 15:07
  • m1957: Por favor! Uma pequena ajuda, não deixem que o fórum ecerre. Obrigado!
    Hoje às 01:10
  • j.s.: [link]
    02 de Julho de 2025, 21:09
  • j.s.: h7t45 ao membro anónimo pela sua ajuda  49E09B4F
    02 de Julho de 2025, 21:09
  • j.s.: dgtgtr a todos  4tj97u<z
    01 de Julho de 2025, 17:18
  • FELISCUNHA: Votos de um santo domingo para todo o auditório  4tj97u<z
    29 de Junho de 2025, 11:59
  • m1957: Foi de boa vontade!
    28 de Junho de 2025, 00:39
  • j.s.: passem f.v. por aqui [link]    h7t45
    27 de Junho de 2025, 17:20
  • j.s.: renovamos o nosso pedido para uma pequena ajuda para pagemento  do nosso forum
    27 de Junho de 2025, 17:19
  • j.s.: h7t45 aos convidados de honra Felizcunha e M1957 pela ajuda
    27 de Junho de 2025, 17:15
  • j.s.: dgtgtr a todos  4tj97u<z
    27 de Junho de 2025, 17:13
  • FELISCUNHA: ghyt74  pessoal  4tj97u<z
    27 de Junho de 2025, 11:51
  • JPratas: try65hytr A Todos  classic k7y8j0
    27 de Junho de 2025, 04:35
  • m1957: Por favor vaamos todos dar uma pequena ajuda, para não deixar encerrar o fórum! Obrigado.
    26 de Junho de 2025, 23:45
  • FELISCUNHA: j.s. enviei PM  101041
    26 de Junho de 2025, 21:33
  • FELISCUNHA: try65hytr  pessoal   htg6454y
    26 de Junho de 2025, 21:33
  • JPratas: try65hytr Pessoal  4tj97u<z
    26 de Junho de 2025, 02:28
  • cereal killa: Boa Tarde Pessoal E com enorme tristeza que depois de 15 anos que idealizei e abri este fórum vejo que esta na iminência de fechar portas porque ninguém tenta ajudar o pagamento do servidor, mas cada ano e sempre difícil arranjar almas caridosas que nos bom ajudando mas este ano esta complicado, mas infelizmente e como diz o j.s dia 5/07 se não houver algumas ajudas esta vez vai mesmo fechar…..e pena e triste mas tudo na vida tem fim. obrigada cereal killa
    25 de Junho de 2025, 19:40
  • j.s.: [link]
    23 de Junho de 2025, 15:58
  • j.s.: a todos um excelente S. João
    23 de Junho de 2025, 15:48

Autor Tópico: Functional Programming in Java : Java Lambdas and Streams  (Lida 85 vezes)

0 Membros e 1 Visitante estão a ver este tópico.

Offline mitsumi

  • Sub-Administrador
  • ****
  • Mensagens: 121842
  • Karma: +0/-0
Functional Programming in Java : Java Lambdas and Streams
« em: 11 de Março de 2023, 08:14 »


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 8).


Download link

rapidgator.net:
Citar
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:
Citar
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:
Citar
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:
Citar
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