

Weet je niet waar
starten?
Track
Certificaat
Java Essentials
4.7+
★★★★★
★★★★★
198 recensies
Beginner
Begin aan een uitgebreide reis in het rijk van Java-programmering. Of je nu net begint of al enige programmeerervaring hebt, dit traject zal je voorzien van de kennis en vaardigheden om uit te blinken als Java-ontwikkelaar. Bekijk meer
java
Boost your Tech Skills!
with up to 55% off
What you'll get with our subscription:
Access to 85+ top-rated courses
AI-driven Learning
Workspaces for practicing your skills
Personalized study tracks
Certificates of completion
Training 2 or more people?
Get your team access to Codefinity courses anytime, anywhere.
Try Codefinity TeamsWhat you will learn
- Build a strong foundation in Java by learning essential syntax, data types, and control structures
- Expand your Java knowledge with advanced concepts, enhancing your ability to write efficient and maintainable code
- Master Object-Oriented Programming (OOP) principles, including encapsulation, inheritance, and polymorphism
- Learn how to work with data structures in Java, such as lists, sets, maps, and queues, to optimize performance
- Understand the fundamentals of unit testing using JUnit, covering different types of testing methodologies
- Dive into Java multithreading to develop high-performance applications that execute multiple tasks concurrently
- 216 chapters
- 32 hours
- 376 tasks
Trusted by employees of leading companies
Learning track content
Module 1 / Java Basics
Discover the unique features of Java and understand why it's a recommended programming language to learn. Write your first Java code and explore how to print text to the console.
Learn the basics of programming, dive into primitive data types, and explore operations with them. Write code that performs mathematical tasks and evaluates conditions for seamless execution.
Explore various loops such as for, while, and do-while, which are essential in any programming language. Loops enable efficient iteration over large datasets, saving significant time. Apply them extensively in tasks like sorting, working with arrays, collections, and more.
Learn how to effectively use arrays in Java programming by discovering how to group data into arrays and exploring common methods and properties for working with them. Techniques for manipulating and optimizing arrays in real-world applications will also be examined.
Learn about String, a crucial data type in Java, and discover its many built-in methods and operations. Explore String and StringBuilder, understanding their basic methods and how to use strings effectively in Java.
Module 2 / Java Extended
Throughout the following lessons, you will become acquainted with the inner workings of Java and discover optimized methods to work with the language. This will involve exploring Java's operations at the computer level and adopting best practices for utilizing familiar concepts efficiently.
You have already encountered methods, and now you will finally understand what they actually are, how to create your own methods, and how to work with them. You will learn to return the desired values from methods and significantly improve the quality and logic of your code.
Get ready to dive into the world of String and discover more about its inner workings and methods. We'll explore the fascinating features that String offers, including the ability to customize the "toString" method, split strings into substrings, and utilize indexes for efficient data retrieval. Let's embark on this exciting journey to expand our knowledge of String manipulation!
In this section, you will learn how to create your own classes and their objects. You will be able to use methods of one class within another and establish relationships between them. Get ready to discover many interesting concepts and delve deeper into OOP programming!
In this section, we will continue our study of classes. We will explore more advanced usage of class objects and learn more about access modifiers and how to use them effectively. We will also delve into getters and setters, as they are considered best practices in programming.
Finally, we can start learning Object-Oriented Programming (OOP) in Java. It will be challenging, but I'm confident that you'll succeed! In this section, we'll cover all the principles of OOP, explain why OOP is important. You'll learn how to inherit classes, overload and override methods, encapsulate data from other classes, and work with abstraction. Moreover, you'll reinforce all these theoretical concepts with practical exercises, working on assignments in your IDE. You'll gain a wealth of knowledge, both practical and theoretical, so let's get started!
In the previous section, we concluded that all Object-Oriented Programming is mainly built on abstraction. However, an abstract class has one significant limitation – you can inherit from only one abstract class. But what if we need more?
Interfaces come to the rescue. In this section, you will learn what an interface is, why it's necessary, how to use it correctly, and you will continue practicing Object-Oriented Programming. Let's turn you into a professional!
Module 4 / Java Data Structures
Discover the concept of lists and explore the most commonly used types in Java. Learn how to create, modify, and manage lists efficiently. Understand their internal structure and discover when to use ArrayList vs. LinkedList based on performance. Implement your own singly linked list and reinforce key concepts through practical coding challenges.
- Introduction to Data StructuresVoorbeeld
- List and ArrayList in JavaVoorbeeld
- Challenge: Library Management SystemVoorbeeld
- CRUD Operations in JavaVoorbeeld
- LinkedList in JavaVoorbeeld
- Implementing LinkedList in JavaVoorbeeld
- Challenge: Implementing size and delete Methods in LinkedListVoorbeeld
- Quiz: Fundamental Data StructuresVoorbeeld
Learn about data structures that are not as commonly used but are still valuable. Data structures like Set, Stack, Queue, and Deque will help you better understand how Java works and their various applications in databases.
Learn about key-value pair-based data retrieval, enabling the creation of structures similar to databases. Discovery of concepts like hashcode and exploration of data structures such as HashMap and HashSet are also included.
Learn to use enum for defining a fixed set of constants and explore the Stream API to process, filter, and transform data efficiently.
Module 5 / Java JUnit Library. Types of Testing
Let's talk about types of testing and which testing methods developers use. You will learn about the stages an application goes through before being delivered to the client and the specific tests you will need to write.
In this section, we're going to dive into unit testing — you'll get the rundown on its structure in Java and the ins and outs of crafting them the right way. Setting up your IDE, importing necessary libraries, and lots of hands-on practice.
In this section, we will enhance our coding skills by dealing with errors that can also be caught in unit tests. When testing an application, you may come across various errors, and sometimes they should be turned into exceptions. I will explain how to catch exceptions in your code, test them, and handle them properly.
Module 6 / Multithreading in Java
This section will delve into the foundational concepts of multithreading in Java, focusing on the creation and management of threads, and the use of synchronization techniques to avoid conflicts. You’ll also learn how to utilize essential keywords and methods to ensure the accurate and reliable execution of multithreaded programs, providing a solid understanding of how to handle concurrency effectively in your applications.
This section explores synchronized collections in Java, explaining their purpose and the common concurrency issues they are designed to solve. You’ll gain insights into how these collections work, why they are essential in multithreaded environments, and how they help ensure safe and consistent data manipulation when multiple threads access shared resources.
- Collections with Multithreading SupportVoorbeeld
- Parallel Stream APIVoorbeeld
- BlockingQueue and its ImplementationsVoorbeeld
- Сhallenge BlockingQueueVoorbeeld
- ConcurrentMap and its ImplementationsVoorbeeld
- Challenge ConcurrentMapVoorbeeld
- CopyOnWrite CollectionVoorbeeld
- Examples of Using Collections MethodsVoorbeeld
This section covers high-level synchronization mechanisms in Java, such as the use of Lock and Condition, semaphores, barriers, atomic variables, and thread pooling with Executors. Each topic is paired with practical exercises designed to reinforce your understanding and help you apply the theoretical knowledge to real-world scenarios.
This section explores fundamental multithreaded programming patterns and practices such as Producer-Consumer, Fork/Join, ThreadLocal, and asynchronous programming with CompletableFuture. You'll work through examples and see the practical outcomes of these approaches, gaining hands-on experience that will enable you to apply these techniques effectively in real-world applications.
Module 7 / Stream API
Discover how Stream API revolutionizes data processing in Java with its expressive and functional approach. Explore its architecture, principles, and key functional features to write concise and efficient code.
- ArchitectureVoorbeeld
- PrinciplesVoorbeeld
- What Is a Functional Interface?Voorbeeld
- Predicate: Data FilteringVoorbeeld
- Challenge: Filtering Corporate Email AddressesVoorbeeld
- Function: Data TransformationVoorbeeld
- Challenge: Income Tax CalculationVoorbeeld
- Comparable: Natural Ordering of DataVoorbeeld
- Comparator: Custom Comparison of DataVoorbeeld
- Challenge: Sorting EmployeesVoorbeeld
- Consumer: Processing DataVoorbeeld
- Supplier: Data GenerationVoorbeeld
- Bi-versions of Functional InterfacesVoorbeeld
- Challenge: Filtering Users by Two CriteriaVoorbeeld
- BinaryOperator: Combining Two ValuesVoorbeeld
Learn about various intermediate operations available in the Stream API that allow you to manipulate and process data in a functional style. These operations, such as filtering, transforming, and sorting, enable you to efficiently work with collections and perform tasks like removing duplicates, limiting results, or handling nested structures. Each operation can be combined to create powerful data pipelines, making your code more concise and readable.
- Transforming Elements with the map() MethodVoorbeeld
- Filtering Elements with the filter() MethodVoorbeeld
- Challenge: Factory Product FilteringVoorbeeld
- Working with Nested Structures with the flatMap() MethodVoorbeeld
- Arranging Items in Order with the sorted() MethodVoorbeeld
- Challenge: Selecting the Best Cars on the Production LineVoorbeeld
- Eliminating Duplicates with the distinct() MethodVoorbeeld
- Challenge: Factory Quality ControlVoorbeeld
- Restricting and Skipping Elements with the limit() and skip() MethodsVoorbeeld
- Challenge: Finding the Top 3 Hardest-Working EmployeesVoorbeeld
- Intermediate Processing with the peek() MethodVoorbeeld
Learn about various terminal operations available in the Stream API that allow you to process and retrieve data efficiently. These operations, such as collecting, reducing, and counting, enable you to aggregate results, find specific elements, or perform side effects like printing or writing to a file. Understanding these operations helps you efficiently handle data processing tasks while keeping your code concise and expressive.
- collect() Gathering Stream Elements into a CollectionVoorbeeld
- Challenge: Build a Custom Collector for Category CountingVoorbeeld
- Collectors Utility Class for Stream APIVoorbeeld
- Processing Elements with the forEach() MethodVoorbeeld
- Handling Values with the Optional ClassVoorbeeld
- Aggregating Elements with the reduce() MethodVoorbeeld
- Challenge: Calculating Total Cost with Discounts and TaxVoorbeeld
- Calculating Stream Statistics with count(), max(), and min()Voorbeeld
- Retrieving Stream Summary Metrics with summaryStatistics() MethodVoorbeeld
- Retrieving Elements from a Stream with findFirst() and findAny()Voorbeeld
- Challenge: Selecting Random Products Within a CategoryVoorbeeld
- Checking Stream Elements Against a Condition with allMatch()Voorbeeld
- Challenge: Ensuring Fast Delivery for Expensive ProductsVoorbeeld
Discover how to apply Stream API in real-world scenarios, improving code readability and efficiency. Learn how to refactor existing code, analyze performance trade-offs, and handle exceptions properly. Will help you write cleaner and more maintainable Java code using Stream API.
Requirements
- A computer with a browser - all browsers are supported.
- Your enthusiasm to enhance your tech skills.
- Everything else needed to start learning and practicing is already included in this course.
Over 200,000 5-star ratings and counting
Ruslan Kravchuk
Het belangrijkste is om te leren en niet op te geven
Het materiaal is goed, er valt veel te leren, alles om beter te worden en het belangrijkste is te leren wat je wilt....
Matteo Comune
Dankzij hen leer ik veel…
Dankzij hen leer ik veel sneller omdat ze je vanaf nul alles uitleggen. Het is de beste website voor mensen zonder IT-achtergrond...
Yuliana Cadavid
geweldige cursus voor beginners
geweldige cursus voor beginners, ze toetsen je kennis in elke les...
Elpunzon
Ik geniet van mijn Codefinity-ervaring…
Ik geniet van mijn Codefinity-ervaring met Python. De zelfgestuurde leermethode past perfect in mijn schema...
Alexandru Alexandru
Het is prettig om van Codefinity te leren
Het is prettig om van Codefinity te leren. Het is eenvoudig en heeft goede voorbeelden van wat ik hier geleerd heb...
jacob Templet
Easy to follow along with and provides…
Makkelijk te volgen en biedt uitdaging in mijn dagelijks leven. Die uitdaging motiveert me elke dag weer te leren...
Elan
Codefinity is een uitgebreide leeromgeving…
Codefinity is een uitgebreide leeromgeving die je helpt je vaardigheden als software engineer of datawetenschapper te ontwikkelen. De oefeningen zijn leuk en helpen je je skills aan te scherpen...
Thibault
Voor het eerst leren coderen
Voor het eerst leren coderen en dit succesvol doen met Codefinity - bedankt...
Adrien Morel
Goed ontworpen voor totale beginners
Goed ontworpen voor totale beginners, met stapsgewijze vooruitgang die me vertrouwen geeft....
_Gracy
het is simpelweg perfect uitgelegd
het is simpelweg perfect uitgelegd! Tot nu toe heb ik geen problemen ervaren, want alles is zo goed geregeld....
Ruslan Kravchuk
Het belangrijkste is om te leren en niet op te geven
Het materiaal is goed, er valt veel te leren, alles om beter te worden en het belangrijkste is te leren wat je wilt....
Matteo Comune
Dankzij hen leer ik veel…
Dankzij hen leer ik veel sneller omdat ze je vanaf nul alles uitleggen. Het is de beste website voor mensen zonder IT-achtergrond...
Yuliana Cadavid
geweldige cursus voor beginners
geweldige cursus voor beginners, ze toetsen je kennis in elke les...
Elpunzon
Ik geniet van mijn Codefinity-ervaring…
Ik geniet van mijn Codefinity-ervaring met Python. De zelfgestuurde leermethode past perfect in mijn schema...
Alexandru Alexandru
Het is prettig om van Codefinity te leren
Het is prettig om van Codefinity te leren. Het is eenvoudig en heeft goede voorbeelden van wat ik hier geleerd heb...
jacob Templet
Easy to follow along with and provides…
Makkelijk te volgen en biedt uitdaging in mijn dagelijks leven. Die uitdaging motiveert me elke dag weer te leren...
Elan
Codefinity is een uitgebreide leeromgeving…
Codefinity is een uitgebreide leeromgeving die je helpt je vaardigheden als software engineer of datawetenschapper te ontwikkelen. De oefeningen zijn leuk en helpen je je skills aan te scherpen...
Thibault
Voor het eerst leren coderen
Voor het eerst leren coderen en dit succesvol doen met Codefinity - bedankt...
Adrien Morel
Goed ontworpen voor totale beginners
Goed ontworpen voor totale beginners, met stapsgewijze vooruitgang die me vertrouwen geeft....
_Gracy
het is simpelweg perfect uitgelegd
het is simpelweg perfect uitgelegd! Tot nu toe heb ik geen problemen ervaren, want alles is zo goed geregeld....
Data Engineer
Certificaat van Voltooiing
Toon je pas verworven vaardigheden. Je hebt het verdiend
Discover more
Learning tracks
Alleen voor Ultimate
7 Cursussen
293 Taken
Alleen voor Ultimate
6 Cursussen
169 Taken
Alleen voor Ultimate
4 Cursussen
115 Taken
Alleen voor Ultimate
6 Cursussen
101 Taken
Alleen voor Ultimate
4 Cursussen
143 Taken
Alleen voor Ultimate
5 Cursussen
119 Taken
Alleen voor Ultimate
3 Cursussen
38 Taken
Alleen voor Ultimate
2 Cursussen
1 Project
57 Taken
Alleen voor Ultimate
7 Cursussen
346 Taken
Alleen voor Ultimate
6 Cursussen
309 Taken
Alleen voor Ultimate
5 Cursussen
146 Taken
Alleen voor Ultimate
5 Cursussen
135 Taken
Alleen voor Ultimate
3 Cursussen
71 Taken
Alleen voor Ultimate
6 Cursussen
239 Taken
Alleen voor Ultimate
5 Cursussen
239 Taken
Alleen voor Ultimate
4 Cursussen
125 Taken
Alleen voor Ultimate
3 Cursussen
119 Taken
Alleen voor Ultimate
3 Cursussen
75 Taken
Alleen voor Ultimate
4 Cursussen
159 Taken
Alleen voor Ultimate
4 Cursussen
154 Taken
Learning tracks
traject
Webontwikkeling met C#
Beginner
4.8
(2360)
traject
Python van Nul tot Held
Beginner
4.7
(8347)
traject
SQL van Nul tot Held
Beginner
4.7
(2594)
traject
C++ Basisprincipes
Beginner
4.5
(484)
traject
Game-ontwikkeling Met Unity
Beginner
4.7
(76)
traject
Word Een React Ontwikkelaar
Halfgevorderd
4.7
(67)
traject
Excel Essentials
Beginner
4.7
(304)
traject
Python Voorbij Gevorderd
Beginner
4.6
(66)
traject
Full Stack Webontwikkeling
Beginner
4.7
(857)
traject
Fundamenten van Frontend-ontwikkeling
Beginner
4.7
(829)
traject
Meesterschap in Datavisualisatie
Halfgevorderd
4.7
(568)
traject
Gecontroleerd Machine Learning
Halfgevorderd
4.6
(125)
traject
C++ Beheersing
Gevorderd
4.8
(16)
traject
Java Web
Gevorderd
4.7
(1164)
traject
Word een QA-Ingenieur
Beginner
4.7
(722)
traject
Videoproductie met Adobe
Beginner
5.0
(5)
traject
UI/UX Ontwerptools
Beginner
5.0
(4)
traject
Essentiële Kantoorvaardigheden
Beginner
4.8
(242)
traject
Digital Marketing Essentials
Beginner
5.0
(3)
traject
Complete Social Media Management
Beginner
5.0
(1)
Become a Software Development expert
Interactive exercises
Learning videos
AI-assistant on all courses
Workspaces for designing your own projects
Ready to get started?
ProBest intro offer | UltimateA complete experience to kickstart your career | |
---|---|---|
85+ Top-Rated courses | ||
Completion certificates | ||
AI-Assistant in all courses | ||
20+ hands-on Real-world projects | ||
Personalized study tracks | ||
Unlimited workspaces | ||
Boost your Tech Skills!
with up to 55% off
What you'll get with our subscription:
Access to 85+ top-rated courses
AI-driven Learning
Workspaces for practicing your skills
Personalized study tracks
Certificates of completion
Training 2 or more people?
Get your team access to Codefinity courses anytime, anywhere.
Try Codefinity Teams