#ArrayList
September 25, 2026 at 4:46 PM
Essa semana refatorei um código que escrevi há onze anos (!) por conta de problemas de desempenho e um pequeno ajuste que teve um ganho absurdo foi trocar um certo atributo de ArrayList<T> para HashSet<T> (ideal pro caso em questão).

A experiência é algo que cê não compra mesmo não
September 24, 2026 at 10:31 PM
I Tried 20+ Java Functional Programming Courses — Here Are My Top 6 Recommendations for 2027
Looking for the best functional programming course for Java? These 6 courses cover Java Lambdas, Functional Interfaces, Streams, Method References, Optional, Collectors, and modern functional-style programming. Hello friends, Functional programming has become an important part of modern Java development. If you’ve been writing Java for a while, you’ve probably seen code like this:List names = new ArrayList(); for (User user : users) { if (user.isActive()) { names.add(user.getName()); } } Modern Java lets you express the same idea much more declaratively:List names = users.stream() .filter(User::isActive) .map(User::getName) .toList(); That’s the appeal of functional programming in Java. Instead of describing every step the computer needs to perform, you can describe what you want to do with the data. Java introduced lambda expressions and the Stream API in Java 8, and subsequent releases have continued to make Java more expressive. Today, functional-style programming is part of everyday Java development rather than an optional advanced technique. And if you’re preparing for Java interviews, functional programming is particularly useful because Lambdas, Streams, Functional Interfaces, Optional, and Collectors regularly appear in coding exercises and interview discussions. So, if you’re looking for the best functional programming courses for Java developers in 2026, you’ve come to the right place. I looked at popular Java functional-programming courses across Udemy, Coursera, and Educative, paying particular attention to: * Course freshness * Java version coverage * Lambdas * Functional interfaces * Stream API * Method references * Collectors * Optional * Immutability * Higher-order functions * Parallel streams * Hands-on exercises * Interview preparation * Real-world Java development Here are the six courses I’d put on your shortlist.Disclosure: This article contains affiliate links. If you purchase a course through one of these links, I may earn a commission at no additional cost to you. 6 Best Functional Programming Courses for Java Developers in 2026 Here are my favorite online courses to learn Functional programming in Java and master lambda, stream and other functional programming concepts in depth. 1. Learn Java Functional Programming with Lambdas & Streams Platform: Udemy Instructor: in28Minutes Official Length: 6+ hours Rating: 4.6/5 Students: 56,000+ If you want one straightforward course to get started with functional programming in Java, this is still one of the first courses I’d consider. The course currently has more than 56,000 students and 11,000 ratings, and it covers the fundamentals developers typically need when moving from imperative Java programming to functional-style Java. The course focuses on: * Lambda expressions, Functional interfaces, Method references * Stream API, Intermediate stream operations, and Terminal operations * Predicate, Consumer, Supplier, Function, BinaryOperator * Higher-order functions * Behavior parameterization * Parallel streams * Working with Lists and Maps * Files, Threads, and Coding exercises One feature I particularly like is the use of Java puzzles and exercises rather than simply explaining Stream API syntax. You get to practice transformations such as:numbers.stream() .filter(n -> n % 2 == 0) .map(n -> n * n) .forEach(System.out::println); rather than simply memorizing what filter() and map() mean. What you’ll learn The course starts with functional programming fundamentals and gradually moves toward:Lambda Expressions ↓ Functional Interfaces ↓ Method References ↓ Streams ↓ Stream Operations ↓ Higher-Order Functions ↓ Parallel Streams ↓ Real Java Applications The curriculum also includes a large Q&A-style review section covering functional interfaces, parallel streams, higher-order functions, and related concepts. Who should take it? This course is particularly suitable for: * Java developers new to functional programming * Developers who understand Java OOP but struggle with Streams * Developers preparing for Java interviews * Spring Boot developers who want to write more modern Java * Developers moving from Java 7-style code to modern Java My take If you’re searching for a Java functional programming course for beginners, this is an easy course to start with. Here is the link to join this course — Learn Java Functional Programming with Lambdas & Streams Learn Java Functional Programming with Lambdas & Streams 2. Java Functional Programming: Lambdas, Streams & Collections Platform: Udemy Instructor: Ramesh Fadatare Length: 19+ hours Rating: 4.7/5 Last updated: September 2026 If course freshness matters to you, this is one of the most interesting options on the list. The course was updated in September 2026 and currently contains more than 19 hours of material across 160+ lectures. It also takes a slightly broader approach than many short functional-programming courses. Instead of immediately jumping into:stream() the course spends time on the Java Collections Framework, which makes sense because Streams are frequently used to process collections. It also includes coding exercises and real-world use cases. Why the Collections section matters A common mistake is learning Streams without understanding collections. For example:List users = ... Then immediately:users.stream() But you should understand: * Why you’re using a List * When a Set makes more sense * How Map differs from List * What HashMap does * What ordering means * How collections are transformed That’s why I like the broader approach of this course. Who should take it? Choose this course if you want: * A newer course * Lots of coding examples * Collections + functional programming * Comprehensive Stream API coverage * Interview-oriented practice * A longer course than the typical 3–6 hour Lambda course My take For someone searching specifically for a modern Java functional programming course in 2026, this is one of the newer options worth checking. Here is the link to check this course — Java Functional Programming: Lambdas, Streams & Collections Java Functional Programming: Lambdas, Streams & Collections 3. Functional Java: Master Java Lambdas and Streams Platform: Udemy Instructor: Java Brains Length: 5+ hours Rating: 4.8/5 If you’re interested in understanding why functional programming works, rather than simply memorizing Stream operations, this course is worth considering. The course covers concepts such as: * Functional programming principles * Pure functions and Impure functions * First-class functions * Higher-order functions * Functional interfaces * Lambda expressions * Method references * Closures * Immutability * Function composition * Stream API * Lazy evaluation * Parallel processing * Functional-style concurrency The course currently contains around 5 hours of material and 47 lectures. One particularly useful topic is function composition. For example:Function doubleIt = x -> x * 2;Function addTen = x -> x + 10; Function result = doubleIt.andThen(addTen); The point isn’t simply learning andThen(). It’s understanding that functions can be treated as reusable pieces that can be composed together. Why this matters There’s a difference between knowing:list.stream() .filter(...) .map(...) .collect(...); and understanding the underlying concepts:Functions ↓ Composition ↓ Immutability ↓ Declarative programming ↓ Stream pipelines The latter gives you a much stronger foundation. Who should take it? This course is particularly interesting for: * Experienced Java developers * Developers transitioning from OOP to functional programming * Developers interested in clean code * Developers interested in immutability * Developers who want to understand function composition My take If you’ve already used Streams but feel like you’re using functional programming without really understanding it, this is the type of course I’d explore. Here is the link to join this course — Functional Java: Master Java Lambdas and Streams Functional Java: Master Java Lambdas and Streams 4. Functional Programming in Java: Java Lambdas and Streams Platform: Udemy Instructor: Dr. Seán Kennedy Last updated: January 2026 Sometimes you don’t need a 30-hour Java course. You already know: * Java syntax * OOP * Collections * Generics You simply want to become comfortable with:Lambdas Functional Interfaces Method References Streams That’s where a focused course can be useful. This course was updated in January 2026 and focuses specifically on Java Lambdas and Streams. For example, you’ll learn how the relationship between an interface and lambda expression works:Predicate even = number -> number % 2 == 0; And then use it:numbers.stream() .filter(even) .toList(); Why I like focused courses A focused course has one major advantage: You don’t have to spend 20 hours relearning Java. If you’re already comfortable with Java, you can go directly into the concepts you actually need. Here is the link to join this course — Functional Programming in Java: Java Lambdas and Streams Functional Programming in Java : Java Lambdas and Streams 5. Functional Programming with Java and Threads (Coursera) Platform: Coursera If you’re an experienced Java developer, functional programming becomes even more interesting when combined with concurrency. This Coursera course covers both object-oriented and functional programming, then connects those concepts with modern Java concurrency. The curriculum covers: * Lambda expressions * Method references * Functional interfaces * Functional design * Java concurrency * Threads * Asynchronous computation * Virtual threads * Future * FutureTask * Scalable programming The course description specifically includes modern Java concurrency concepts such as virtual threads alongside functional programming. That’s valuable because functional programming and concurrency have an interesting relationship. Pure functions are easier to reason about because they minimize hidden state and side effects. For example:int square(int x) { return x * x; } Compare that with code that modifies shared mutable state. When multiple threads execute code concurrently, avoiding unnecessary shared mutable state can make programs easier to reason about. If you’ve already mastered basic Lambdas and Streams, I’d rather see you connect functional programming with concurrency, immutability, and scalability than spend another five hours learning basic filter() examples. Here is the link to join this course — Functional Programming with Java and Threads 6. Java 8 for Experienced Developers: Lambdas, Stream API & Beyond (Educative.io) If you’re already an experienced Java developer and want to go deeper into modern Java rather than taking a beginner functional-programming course, Pluralsight’s Java SE Deep Dive path is worth considering. The current path contains 15 courses and 11 labs, with a dedicated section covering functional programming with Lambdas, Generics, and Streams. It includes a Java SE Deep Dive: Lambda Expressions course updated in March 2026 and a Streams course covering streams from pipelines through newer functionality such as Gatherers. This is particularly interesting for developers who don’t want to stop at:stream() .filter() .map() .collect(); The modern Java ecosystem continues to evolve. Why this is different The other courses on this list are mostly standalone functional-programming courses. You can use the learning path to continue into other modern Java topics rather than treating functional programming as an isolated skill. Here is the link to join this course — Java 8 for Experienced Developers: Lambdas, Stream API & Beyond And, if you find the Educative platform and their interactive courses useful then you can also get an Educative Subscription that provides access to not just this course but their 210+ courses in just $14.9 per month. It’s very cost-effective and great for preparing for coding interviews Educative Unlimited: Excel with AI-Powered Learning Final Thoughts Functional programming is no longer an exotic concept in Java. If you’re working with modern Java, you will almost certainly encounter:Lambdas Streams Functional Interfaces Method References Optional Collectors The trick is not to turn every Java program into a giant chain of .map().filter().flatMap() calls. The goal is to understand when functional-style code makes your program clearer. If you’re a beginner, start with a practical course such as Learn Java Functional Programming with Lambdas & Streams. If you want a newer and broader course, Java Functional Programming: Lambdas, Streams & Collections is worth checking out. If you’re an experienced developer, consider going deeper into immutability, function composition, concurrency, and modern Java Streams rather than simply learning Lambda syntax. And most importantly:Don’t just watch a functional programming course. Rewrite your existing Java code. Take an old for loop. Turn it into a Stream. Then ask yourself: Is the new version actually easier to understand? That’s when functional programming starts becoming a useful engineering skill rather than just another item on your Java resume. One final tip: don’t buy six functional programming courses. Buy one. Finish it. Then write some code. The fastest way to learn Java functional programming is still to open your IDE and start replacing those 50-line loops with small, readable transformations — and then decide whether the result is actually better. All the best !!. --- I Tried 20+ Java Functional Programming Courses — Here Are My Top 6 Recommendations for 2027 was originally published in Javarevisited on Medium, where people are continuing the conversation by highlighting and responding to this story.
dlvr.it
September 22, 2026 at 4:04 PM
CVE-2026-93572 - Netty: netty-codec-redis: io.netty/netty-codec-redis: netty: redisarrayaggregator nested resp headers multiply patched preallocation limits
CVE ID : CVE-2026-93572

Published : 18 septembre 2026 11:17 | 35 minutes ago

Description : ## Summary

`RedisArray...
CVE-2026-93572 - Netty: netty-codec-redis: io.netty/netty-codec-redis: netty: redisarrayaggregator nested resp headers multiply patched preallocation limits
## Summary `RedisArrayAggregator` recently added `maxElements` and `maxNestedArrayDepth` limits to fix public Redis resource-exhaustion advisories. The limits are independent, but the allocator remains eager: every positive nested RESP array header creates `new ArrayList (length)` before any child element exists. With the default constructor, an attacker can send nested array headers with …
cvefeed.io
September 18, 2026 at 12:57 PM
Assign #1- Bank Simulator CST8130 Answered

Problem Description: In this assignment, you will complete an objectoriented version of the software managing Bank customers’ Bank Accounts. Note you may NOT use the ArrayList class in Java for this assignment. We will use this assignment as the base for…
Assign #1- Bank Simulator CST8130 Answered
Problem Description: In this assignment, you will complete an objectoriented version of the software managing Bank customers’ Bank Accounts. Note you may NOT use the ArrayList class in Java for this assignment. We will use this assignment as the base for many following assignments. You must use the classes as named in this assignment, but you can use different methods and data member names as long as your solution follows all Object Oriented Principles.
jarviscodinghub.com
September 9, 2026 at 10:22 AM
Assign #2- Bank Simulator CST8130 Answered

Sorting/Searching using ArrayList DUE: Tuesday October 18 by 10PM SHARP! Problem Description: In this assignment, you will modify a solution to Assignment 1. You may use your solution, or my posted one. You will make the Bank data structure more efficient…
Assign #2- Bank Simulator CST8130 Answered
Sorting/Searching using ArrayList DUE: Tuesday October 18 by 10PM SHARP! Problem Description: In this assignment, you will modify a solution to Assignment 1. You may use your solution, or my posted one. You will make the Bank data structure more efficient in two ways. a) Change the bankData declaration in Bank class to be an object of ArrayList.. b) Add to the menu an option to display the database – which will display each element in the array.
jarviscodinghub.com
September 9, 2026 at 10:03 AM
Assignment 1 CMSC 204 Answered

Concepts tested by this program: ArrayList Tooltips Mnemonic Read Files Javadoc JUnit Tests Exceptions Create an application that will check for valid passwords. The following rules must be followed to create a valid password. 1.At least 6 characters long 2.More than…
Assignment 1 CMSC 204 Answered
Concepts tested by this program: ArrayList Tooltips Mnemonic Read Files Javadoc JUnit Tests Exceptions Create an application that will check for valid passwords. The following rules must be followed to create a valid password. 1.At least 6 characters long 2.More than 10 characters is a strong password, between 6 and 10 characters is a weak (but acceptable) password. 3.At least 1 numeric character&hellip;
jarviscodinghub.com
September 7, 2026 at 10:45 AM
Pointer Stability в Zig ArrayList: Полное руководство по безопасности указателей

https://kripta.biz/posts/F2151519-94A2-4F7B-9EBE-4C6F4E0AF110
August 30, 2026 at 4:42 PM
Zig语言指针稳定性与ArrayList最佳实践指南

https://qian.cx/posts/42D9D96B-A9E0-40AF-9DB1-2FF980F6E56E
August 30, 2026 at 4:42 PM
##Programacion ##BuenasPracticas: Usa estructuras de datos adecuadas; elige la colección que mejor se ajuste (ArrayList vs LinkedList, vector vs list, dict vs list) para evitar sobrecarga y mejorar claridad y rendimiento.
August 10, 2026 at 12:19 PM
@karlseguin.com I enjoyed your recent post. I use a segment array to avoid that ArrayList+Arena resize awkwardness. One other nice property: it doesn't move existing items when it grows. I wrote about it here: danielchasehooper.com/posts/segmen...
A Fast, Growable Array With Stable Pointers in C
My last article about generic data structures in C was written to set the stage for today’s topic: A data structure with constant time indexing, stable pointers, and works well with arena allocators. ...
danielchasehooper.com
August 5, 2026 at 2:17 PM
Variant (1.0.2) by Brayden Anderson

➡️ https://github.com/braydenanderson2014/Variant

A template-based Variant class that supports single values and dynamic lists using ArrayList or SimpleVector.

#ArduinoLibs #ArduinoLibraries
GitHub - braydenanderson2014/Variant: A type that can hold strings, objects, etc without needing explicit type declaration.
A type that can hold strings, objects, etc without needing explicit type declaration. - braydenanderson2014/Variant
github.com
July 30, 2026 at 12:00 AM
Why is ArrayList.add() at the end O(1) amortized and not always O(1)?

🤔 The answer lies in how ArrayList grows internally.

Read my latest article on ArrayList in Java

open.substack.com/pub/gauravrs...?

#Java #JavaDeveloper #ArrayList #Collections #Programming #SpringBoot #ByteCraft
ArrayList in Java
The most widely used List implementation for dynamic data storage.
open.substack.com
July 27, 2026 at 3:01 AM
#後で読む 用メモです→
2026年7月最新Java配列完全ガイド宣言初期化要素操作多次元配列ArrayListまで ...
【2026年7月最新】Java配列完全ガイド|宣言・初期化・要素操作・多次元配列・ArrayListまで徹底解説 - AI鬼管理
Java配列を完全解説。宣言・初期化・要素数取得・要素追加・多次元配列・ArrayListとの比較・業務での活用・Claude Code自動化まで非エンジニア向けに解説します。
genai-ai.co.jp
July 20, 2026 at 3:09 PM
What's the output?

final List list = new ArrayList<>();

list.add("Java");

🤔 Compilation Error or Runs Successfully?

The answer surprises many beginners.

Read my latest article on Final Keyword in Java
🔗 open.substack.com/pub/gauravrs...?

#Java #JavaDeveloper #Programming
Final Keyword in Java
Prevent modification and write safer, more predictable Java code.
open.substack.com
July 15, 2026 at 2:46 AM
You can write perfectly valid Java code and still choose the wrong data structure. @asm0dey.site goes through Big O, sorting, ArrayList growth, LinkedList trade-offs, ArrayDeque, and what happens inside HashMap. Watch here: youtu.be/hY5A7kKQTKw
Data Structures and Algorithms Explained with Java
YouTube video by CyberJAR
youtu.be
July 8, 2026 at 2:49 PM
July 5, 2026 at 4:19 PM
Sometimes what you need is a hybrid of an ArrayList and a LinkedList. (When your API allows adding things into a list like structure - think contextual data).

BlockLinkedList that does exactly. Uses ART instrinsics for a fast reset and object pooling to minimize GC overhead.
github.com
July 4, 2026 at 10:16 PM
June 21, 2026 at 5:26 AM
resizable as in you can push to it and it will grow (like ArrayList in java or Vec in rust). they're also not CoW in either language because that doesn't really work unless you have reference counting (which would have a massive performance cost compared to a tracing GC and wouldn't support cycles)
June 3, 2026 at 6:21 PM
木々を通して熱い黄金の光がフィルターし、森の床に長い影を投げ込む1日夕の静かな森林。2日夜の未来的な都市風景は、静かで暗い湖から反射するネオンの光で、雲の塔に囲まれた3日夕の雲の塔に囲まれる。3日夜の静かな黄金の光で、木々を通して輝く花と塔(ArrayList)の木々で埋め込まれた神秘的な古代の寺院は、複雑な彫刻と輝くエテレアルバルブを含む。4日夜の暗い海の風景は、巨大な波が岩の岸に衝突し、明るく、太陽の下に落ちている。5日夜の空の下で、真実の砂
June 3, 2026 at 8:01 AM