Java Foundations The Complete Course with Java 21 Updates

0dayddl

U P L O A D E R
537368816_que-es-udemy-analisis-opiniones.jpg

44.66 GB | 46min 6s | mp4 | 1280X720 | 16:9
Genre:eLearning |Language:English


Files Included :
01 Welcome to the World of Java.mp4 (22.19 MB)
02 What is Java.mp4 (29.92 MB)
03 Installing JDK 21 + IntelliJ IDE on MacOS with SDKMan + Homebrew.mp4 (261.44 MB)
04 Installing JDK 21 + IntelliJ IDE on Windows with Chocolatey.mp4 (188.27 MB)
05 Legacy Lesson - Install JDK 17 on Windows.mp4 (13.14 MB)
06 Legacy Lesson - Install JDK 17 on MacOS.mp4 (18.03 MB)
07 Legacy Lesson - Installing a Java Editor (IntelliJ IDE).mp4 (54.7 MB)
08 Hello World Our First Simple Application.mp4 (27.05 MB)
09 Asking for Help.mp4 (24.63 MB)
10 Coding Exercises for the Whole Course.mp4 (23.15 MB)
01 Object Orientation.mp4 (488.17 MB)
02 Class Basics.mp4 (45.1 MB)
03 Variables & Data Types.mp4 (53.86 MB)
04 var Variables.mp4 (31.95 MB)
05 Simple Collections with Arrays.mp4 (186.85 MB)
06 Methods.mp4 (131.6 MB)
07 Varargs.mp4 (44.73 MB)
08 Static Methods.mp4 (26.62 MB)
09 Static Variables.mp4 (25.76 MB)
10 Static Initializers.mp4 (16.8 MB)
11 The Object Superclass.mp4 (61.85 MB)
12 Member Visibility Methods.mp4 (297.97 MB)
13 Member Visibility Fields.mp4 (21.5 MB)
14 Constructors.mp4 (63.43 MB)
15 Getters & Setters.mp4 (90.7 MB)
01 Intro.mp4 (2.49 MB)
02 Creating Strings.mp4 (47.5 MB)
03 Upper & Lower Casing.mp4 (40.8 MB)
04 Strings Blank or Empty.mp4 (15.78 MB)
05 Replacing Text Within Strings.mp4 (19.16 MB)
06 Removing White Space - strip().mp4 (56.44 MB)
07 Getting Individual Characters of a String - charAt().mp4 (16.26 MB)
08 Comparing String for Alphabetical Order - compareTo().mp4 (28.49 MB)
09 Determining if Text is Contained in a String - contains().mp4 (9.79 MB)
10 String Concatenation - concat.mp4 (85.22 MB)
11 Determining the Length of a String - length().mp4 (32.24 MB)
12 Getting Parts of a String - substring.mp4 (58.66 MB)
13 Searching within a String - indexOf().mp4 (474.9 MB)
14 Splitting String Apart - split().mp4 (128.38 MB)
15 Beginning & Ending of Strings - startsWith() & endsWith().mp4 (24.66 MB)
16 Comparing Strings for Equality - contentEquals().mp4 (42.59 MB)
17 JDK 21 String Templates.mp4 (65.19 MB)
01 Intro to Regular Expressions.mp4 (10.18 MB)
02 ABCs of Regular Expressions Part One.mp4 (21.93 MB)
03 ABCs of Regular Expressions Part Two.mp4 (60.43 MB)
04 Capture Groups Part One.mp4 (75.36 MB)
05 Capture Groups Part Two.mp4 (53.01 MB)
06 Named Capture Groups.mp4 (40.04 MB)
07 Comments in Regular Expressions.mp4 (34.63 MB)
08 Wrapping Up Phone Number Parsing.mp4 (20.26 MB)
09 Additional Character Classes.mp4 (189.13 MB)
10 Parsing a Real Text Document.mp4 (130.62 MB)
11 Greedy Operators.mp4 (84.55 MB)
12 Finding Multiple Matches.mp4 (44.23 MB)
01 Introduction to Numbers.mp4 (3.82 MB)
02 Bits and Bytes.mp4 (26.66 MB)
03 Hexadecimal Numbers.mp4 (88.52 MB)
04 Numeric Data Types.mp4 (87.38 MB)
05 Bigger Numbers.mp4 (109.61 MB)
06 Floating Point Numbers.mp4 (180.61 MB)
07 Beyond Decimal.mp4 (78.59 MB)
08 Simple Math Operations.mp4 (350.24 MB)
09 Standard Math Functions.mp4 (53.51 MB)
10 More on Random Numbers.mp4 (21.84 MB)
11 Coding Exercise Calculating the Area of a Circle.mp4 (25.75 MB)
12 Coding Exercise Calculating Centripetal Force.mp4 (112.35 MB)
13 Comparing Numbers.mp4 (17.5 MB)
14 Introducing BigDecimal.mp4 (19.66 MB)
15 Using BigDecimal.mp4 (33.8 MB)
16 More on BigDecimal & BigInteger.mp4 (36.21 MB)
17 Coding Exercise Calculating Compound Interest.mp4 (154.41 MB)
18 Formatting Numbers.mp4 (193.55 MB)
19 Customizing Number Formatters.mp4 (85.33 MB)
20 Additional Ways to Format Numbers.mp4 (144.1 MB)
21 Numeric Wrapper Classes.mp4 (69.96 MB)
01 Intro to Control Flow.mp4 (105.9 MB)
02 Conditionals with IfElse.mp4 (138.4 MB)
03 Control Flow Inequalities.mp4 (22.73 MB)
04 The Switch Statement.mp4 (44.95 MB)
05 Switch Statement New Features.mp4 (60.67 MB)
06 While Loops Part One.mp4 (107.64 MB)
07 Switch Statement Pattern Matching in JDK 21.mp4 (87 MB)
08 Legacy Lesson (see JDK 21 version) Switch Statement Pattern Matching JDK 17.mp4 (49.69 MB)
09 While Loops Part Two.mp4 (66.14 MB)
10 DoWhile Loops Part One.mp4 (94.98 MB)
11 DoWhile Loops Part Two.mp4 (122.06 MB)
12 For Loops.mp4 (139.12 MB)
13 A Simpler For Loop.mp4 (38.91 MB)
14 The Enhanced For Loop.mp4 (13.68 MB)
15 Applying Loops to Regex.mp4 (18.44 MB)
01 Intro to Testing.mp4 (7.97 MB)
02 Setting Up.mp4 (69.79 MB)
03 Our First Test.mp4 (79.56 MB)
04 Writing the Second Test.mp4 (70.52 MB)
05 Testing Edge Cases.mp4 (36.91 MB)
06 Testing Annuity Calculation.mp4 (100.07 MB)
07 Reimplementing the Guessing Game with TDD.mp4 (76.66 MB)
08 Guessing Game TDD Part Two.mp4 (152.86 MB)
09 Implementing Randomness.mp4 (81.76 MB)
10 Testing for Randomness A Deeper Explanation.mp4 (202.71 MB)
11 Tracking the Number of Guesses.mp4 (145.85 MB)
12 Handling More than Four Guesses.mp4 (61.37 MB)
13 Wrapping up Testing.mp4 (123.1 MB)
14 Reimplementing the Guessing Game User Interface.mp4 (67.74 MB)
15 Debugging Code Part One.mp4 (496.56 MB)
16 Debugging Code Part Two.mp4 (158.33 MB)
01 Intro.mp4 (4.39 MB)
02 Enums.mp4 (533.61 MB)
03 Enum Ordinals.mp4 (88.42 MB)
04 Enum Methods.mp4 (62.75 MB)
05 Enum Fields.mp4 (114.09 MB)
06 Enum ValueOf.mp4 (61.65 MB)
07 The 'this' Keyword.mp4 (69.01 MB)
08 Setup for More Advanced OOP Topics.mp4 (52.89 MB)
09 Employee Salaries Continued.mp4 (255.24 MB)
10 Completing Other Employee Cases.mp4 (199.45 MB)
11 Introducing a Programmer Class.mp4 (328.82 MB)
12 Implementing the Other Employee Classes.mp4 (222.01 MB)
13 Introducing Interfaces.mp4 (266.06 MB)
14 Revisiting Class Hierarchies.mp4 (305.03 MB)
15 Completing the Employee Class Hierarchy.mp4 (77.61 MB)
16 Dealing with the Null Case.mp4 (68.62 MB)
17 Introducing Abstract Classes.mp4 (94.51 MB)
18 Factory Methods.mp4 (220.42 MB)
19 Nested Classes.mp4 (75.86 MB)
20 Other Types of Nested Classes.mp4 (168.57 MB)
21 Records.mp4 (83.5 MB)
22 Lambdas Versus Anonymous Classes.mp4 (172.78 MB)
23 Composition Versus Inheritance.mp4 (104.03 MB)
24 Default Methods.mp4 (90.01 MB)
25 Comparing Classes with 'instanceof'.mp4 (151.33 MB)
26 Unnamed Patterns.mp4 (71.69 MB)
27 OOP Recap.mp4 (195.35 MB)
29 Solutions & Explanations to Exercises 8 1.mp4 (395.37 MB)
30 Solutions & Explanations to Exercises 8 2 - 8 3.mp4 (610.04 MB)
31 Solutions & Explanations to Exercises 8 4 - 8 9.mp4 (292.69 MB)
32 Solutions & Explanations to Exercises 8 10 - 8 19.mp4 (273.42 MB)
33 Solutions & Explanations to Exercises 8 20 - 8 22.mp4 (232.18 MB)
01 Intro to Collections.mp4 (14.86 MB)
02 List Basics.mp4 (120.76 MB)
03 Linked Lists.mp4 (138.64 MB)
04 Looping with Iterators.mp4 (101.92 MB)
05 Loose Ends of Lists.mp4 (60.17 MB)
06 Additional List Methods.mp4 (141.01 MB)
07 List contains() & Object equals().mp4 (129.63 MB)
08 Implementing Comparator to Sort Lists.mp4 (405.27 MB)
09 Implementing Comparable to Sort Lists.mp4 (357.13 MB)
10 Intro to Sets.mp4 (185.6 MB)
11 Sets & Hashcode.mp4 (214.98 MB)
12 LinkedHashSet.mp4 (114.97 MB)
13 TreeSet.mp4 (239.8 MB)
14 Intro to Maps.mp4 (12.38 MB)
15 A Map Scenario.mp4 (244.83 MB)
16 Using Map Implementations.mp4 (285.02 MB)
17 Additional Map Methods.mp4 (232.44 MB)
18 JDK 21 Collections Changes.mp4 (129.24 MB)
19 Wrapping Up.mp4 (16.29 MB)
01 Intro to Streams & Lambdas.mp4 (8.08 MB)
02 First Steps into Streams API.mp4 (427.35 MB)
03 Streams Explained.mp4 (74.97 MB)
04 Creating Streams.mp4 (418.47 MB)
05 Summing with Streams.mp4 (90.61 MB)
06 Sorting with Streams.mp4 (106.17 MB)
07 Filtering with Streams.mp4 (223.9 MB)
08 Additional Filtering Techniques.mp4 (114.74 MB)
09 Flattening Streams of Streams.mp4 (459.49 MB)
10 Alternatives to Filter.mp4 (167.88 MB)
11 The Map Reduce Pattern.mp4 (246.03 MB)
12 Intro to More Advanced Streams.mp4 (128.91 MB)
13 Big Data Summing.mp4 (841.06 MB)
14 Domain Models with Streams API.mp4 (172.4 MB)
15 Grouping Records.mp4 (456.72 MB)
16 Summing by Groups.mp4 (197.63 MB)
17 Nested Groupings.mp4 (277.92 MB)
18 Reducing with Collect.mp4 (100.26 MB)
19 Partitioning vs Grouping.mp4 (57.34 MB)
20 Functional Interfaces.mp4 (67.84 MB)
21 Functional Methods of Collections.mp4 (203.74 MB)
01 Exceptions.mp4 (155.85 MB)
02 Checked Exceptions.mp4 (108.34 MB)
03 Generics Part One.mp4 (130.77 MB)
04 Generics Part Two.mp4 (188.79 MB)
05 Optionals Part One.mp4 (132.95 MB)
06 Optionals Part Two.mp4 (711.56 MB)
07 Dates & Times Intro.mp4 (115.66 MB)
08 Dates & Times Periods & Durations.mp4 (24.22 MB)
09 Dates & Times Time Zones.mp4 (145.82 MB)
10 Dates & Times Parsing & Formatting.mp4 (522.01 MB)
11 Dates & Times Temporal Adjustors & Immutability.mp4 (66.86 MB)
01 Getting Started with Databases.mp4 (123.21 MB)
02 Installing DBeaver SQL Client.mp4 (27.12 MB)
03 Installing Squirrel SQL Client.mp4 (80.22 MB)
04 Let's Learn Some SQL.mp4 (192.45 MB)
05 Creating & Retrieving Records.mp4 (109.16 MB)
06 Database Functions.mp4 (65.2 MB)
07 The UD in CRUD.mp4 (118.67 MB)
08 Creating a New Database Project.mp4 (119.61 MB)
09 TDD for Saving a Person.mp4 (168.42 MB)
10 Writing the JDBC Code to Save a Person.mp4 (263.31 MB)
11 Tidying Up & Explaining Our Save Code.mp4 (337.92 MB)
12 Creating a Custom Save Exception.mp4 (43.87 MB)
13 Finding a Person By ID.mp4 (782.66 MB)
14 FindById A Negative Case.mp4 (47.3 MB)
15 Deleting a Person.mp4 (85.6 MB)
16 Deleting Multiple People at Once.mp4 (76.19 MB)
17 Updating a Person.mp4 (308.94 MB)
18 Creating a Reusable CRUD Repository.mp4 (346.95 MB)
19 CRUD Repository FindById.mp4 (46.27 MB)
20 CRUD Repository Completing the Remaining Methods.mp4 (201.51 MB)
21 CRUD Repository Implementing a Custom Annotation.mp4 (474.9 MB)
22 CRUD Repository Allowing Multiple SQL Annotations.mp4 (433.16 MB)
23 CRUD Repository Custom ID Annotation.mp4 (461.05 MB)
24 Loading Five Million People with PeopleRepository.mp4 (289.06 MB)
25 Speeding up the Queries with Indexes.mp4 (207.39 MB)
26 Creating an Address Table.mp4 (557.06 MB)
27 Saving One Address.mp4 (650.69 MB)
28 Saving a Person without an Address.mp4 (169.36 MB)
29 Fetching a Person with Their Address.mp4 (283.25 MB)
30 Fetching Address in One Go with Join Queries.mp4 (247.52 MB)
31 Joins with Missing Addresses.mp4 (587.46 MB)
32 Adding a Second Address Field.mp4 (625.42 MB)
33 Brief Word of Encouragement.mp4 (53.14 MB)
34 Challenge Adding a Spouse.mp4 (41.92 MB)
35 Adding Children.mp4 (248.51 MB)
36 Fetching Children in One Join.mp4 (263.34 MB)
37 Writing Code to Fetch Children in One Join.mp4 (381.71 MB)
38 Troubleshooting Techniques for Broken Tests.mp4 (250.15 MB)
39 Fixing FindAll for Join-Fetched Child Code.mp4 (422.95 MB)
40 Join Tables.mp4 (116.63 MB)
41 Optimizing with Caching.mp4 (314.04 MB)
42 Optimizing Prepared Statements.mp4 (252.6 MB)
43 Conclusion.mp4 (426.26 MB)
01 Introduction.mp4 (45.25 MB)
02 Creating the PeopleDB-Web Project.mp4 (42.97 MB)
03 Implementing Web Hello World.mp4 (25.76 MB)
04 Web & HTTP Basics.mp4 (103.29 MB)
05 Displaying a Simple List of People.mp4 (89.69 MB)
06 Introducing a Bootstrap Table for People.mp4 (212.27 MB)
07 Formatting Dates & Salaries.mp4 (241.84 MB)
08 Introducing Spring Data.mp4 (653.38 MB)
09 Saving People.mp4 (213.43 MB)
10 UI & Database Tweaks.mp4 (270.42 MB)
11 Validating Data.mp4 (262.52 MB)
12 Deleting People.mp4 (142.5 MB)
13 Updating People.mp4 (322.23 MB)
14 Internationalization.mp4 (591.66 MB)
15 Uploading a File.mp4 (501.9 MB)
16 Saving Uploaded Files.mp4 (330.96 MB)
17 Retrieving Uploaded Files.mp4 (295.93 MB)
18 Handling Exceptions in UI.mp4 (300.05 MB)
19 Introducing a Service Layer for Coordination & Logic.mp4 (244.81 MB)
20 Coordinating Deletes with a Service.mp4 (154.5 MB)
21 Custom Query Methods.mp4 (90.4 MB)
22 Pagination.mp4 (595.53 MB)
23 Importing a CSV File.mp4 (579.16 MB)
24 Fixing Deletes & UI Loose Ends.mp4 (223.89 MB)
25 Items Not Covered Thoroughly.mp4 (552.91 MB)
26 Where to Go from Here.mp4 (673.15 MB)
]
Screenshot
cZkIo6I7_o.jpg


RapidGator
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
TurboBit
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
 
Kommentar

In der Börse ist nur das Erstellen von Download-Angeboten erlaubt! Ignorierst du das, wird dein Beitrag ohne Vorwarnung gelöscht. Ein Eintrag ist offline? Dann nutze bitte den Link  Offline melden . Möchtest du stattdessen etwas zu einem Download schreiben, dann nutze den Link  Kommentieren . Beide Links findest du immer unter jedem Eintrag/Download.

Data-Load.me | Data-Load.ing | Data-Load.to | Data-Load.in

Auf Data-Load.me findest du Links zu kostenlosen Downloads für Filme, Serien, Dokumentationen, Anime, Animation & Zeichentrick, Audio / Musik, Software und Dokumente / Ebooks / Zeitschriften. Wir sind deine Boerse für kostenlose Downloads!

Ist Data-Load legal?

Data-Load ist nicht illegal. Es werden keine zum Download angebotene Inhalte auf den Servern von Data-Load gespeichert.
Oben Unten