ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

647 results

Marcus
Immutable Objects in Java

In this episode I will introduce you to immutable objects in Java. For my entire Java 8 course (about 16 hours plus all ...

16:03
Immutable Objects in Java

28,425 views

9 years ago

Jordan West
Immutability, visually explained | Code Words

Immutable is one of those coding terms that can be really daunting the first time you hear it. This video breaks down immutability ...

7:08
Immutability, visually explained | Code Words

13,840 views

3 years ago

Java
Java Withers - Inside Java Newscast #67

JEP 468 proposes a solution to the verbosity that can come from modeling mutable state with immutable records: *derived record ...

12:34
Java Withers - Inside Java Newscast #67

12,599 views

1 year ago

Drunken Engineer
How to Handle Immutable Class with Mutable Reference (Date)

This video explains how to handle Immutable class with mutable references. One of the best book for Interview Questions Top ...

8:32
How to Handle Immutable Class with Mutable Reference (Date)

2,460 views

3 years ago

Code Persist
Ditch your Favorite Programming Paradigm

Programming paradigms define the way our code is written and styled. With modern-day programming, a multi-paradigm ...

6:08
Ditch your Favorite Programming Paradigm

238,453 views

2 years ago

Tales from the jar side
Harnessing Java 21 for Data Oriented Programming

Harnessing Java 21 for Data Oriented Programming Discover how the new features in Java 21—records, sealed interfaces, and ...

17:07
Harnessing Java 21 for Data Oriented Programming

6,166 views

1 year ago

Geekific
String vs StringBuilder vs StringBuffer | What is Immutability? | Java String Operations | Geekific

Discord Community: https://discord.gg/dK6cB24ATp GitHub Repository: https://github.com/geekific-official/ In this video we cover ...

11:58
String vs StringBuilder vs StringBuffer | What is Immutability? | Java String Operations | Geekific

22,999 views

4 years ago

Java
Sequenced Collections, Purity, and more at JavaOne - Inside Java Newscast #31

Sequenced collections introduce an abstraction for collections with a known encounter order like all lists and some sets and maps ...

7:28
Sequenced Collections, Purity, and more at JavaOne - Inside Java Newscast #31

6,700 views

3 years ago

Java
Records Patterns, Performance and Serialization - JEP Café #8

This #JEPCafe discusses JEP 395: Records, released with JDK 16. We start with a short recap on what records are, then discuss ...

15:28
Records Patterns, Performance and Serialization - JEP Café #8

12,475 views

3 years ago

NetworkChuck
why are TUPLES even a thing?

How cool would it be to have live chat on your website?? Make it happen for free in like 5 min with 3CX: https://ntck.co/3cx Python ...

7:28
why are TUPLES even a thing?

257,383 views

2 years ago

Dr_K
ImmutablePerson-1of6-FieldsConstructor

An immutable class is a class in which the object value cannot change. So we have the Person class from the Java tutorial.

6:30
ImmutablePerson-1of6-FieldsConstructor

2,761 views

10 years ago

Java2Cloud Academy
16. Mastering Java Strings: Immutable & Creation Techniques

Welcome to Java2CloudAcademy ! In this video, you'll learn all about Java Strings, their immutability, and various ways to create ...

14:34
16. Mastering Java Strings: Immutable & Creation Techniques

28 views

11 months ago

Ryan Michael Kay
Working Class Java 2-5: What do Immutable and Mutable mean? How To Use Java Final Keyword

In this lesson, Ryan discusses what it means for code to be either mutable or immutable. It is actually simpler than it seems!

6:53
Working Class Java 2-5: What do Immutable and Mutable mean? How To Use Java Final Keyword

1,078 views

4 years ago

Awesome
Java is now easier than ever...

An overview of the Java 25 release. Topics: - Primitive patterns support; - Module import declarations; - Compact source files; ...

4:39
Java is now easier than ever...

40,917 views

3 months ago

Java
11 Tricks From dev.java - Inside Java Newscast #14

Java #Java17 #OpenJDK #JDK From compact record constructors to boolean expressions in pattern matching, from generic ...

5:04
11 Tricks From dev.java - Inside Java Newscast #14

4,615 views

4 years ago

Seshagopal's Tech Central
23. Immutable Classes | Java Tutorial | Records

In this video, had covered about immutable classes in Java. Explores questions like, What are immutable classes in Java? How to ...

10:15
23. Immutable Classes | Java Tutorial | Records

21 views

1 year ago

Bro Code
Java String methods 💬

Java String methods tutorial explained #java #string #methods public class Main { public static void main(String[] args) { // String ...

6:18
Java String methods 💬

153,997 views

5 years ago

Java
Factory Methods for Collections - JEP Café #6

This #JEPCafe discusses 'Convenience Factory Methods for Collections' (JEP 269), released with JDK 9. Factory methods allow ...

12:42
Factory Methods for Collections - JEP Café #6

9,170 views

4 years ago

Rakesh Kuchana
Creating our own immutable class | Java interview questions

Immutable classes play a critical role in modern software development, particularly in Java programming. By understanding how ...

4:31
Creating our own immutable class | Java interview questions

106 views

1 year ago

Awesome
Modern Java is pretty cool and you can't avoid it anymore...

Check out Junie - https://jb.gg/Awesome-Junie An overview of the modern Java ecosystem. Topics: - Modern Java features; ...

8:45
Modern Java is pretty cool and you can't avoid it anymore...

59,268 views

2 months ago

Giolytics Learning
Encapsulating mutable fields in a Java class

This tutorial shows how to encapsulate mutable fields in a Java class by making a defensive copy of a mutable object and ...

9:14
Encapsulating mutable fields in a Java class

256 views

4 years ago

Geekific
The Chain of Responsibility Pattern Explained & Implemented | Behavioral Design Patterns | Geekific

Discord Community: https://discord.gg/dK6cB24ATp GitHub Repository: https://github.com/geekific-official/ In this video, we break ...

7:36
The Chain of Responsibility Pattern Explained & Implemented | Behavioral Design Patterns | Geekific

74,143 views

4 years ago

Java
Data-Oriented Programming - Inside Java Newscast #29

JavaOne is back! ➱ https://oracle.com/javaone Data-oriented programming focuses on modeling data as data (instead of as ...

8:24
Data-Oriented Programming - Inside Java Newscast #29

14,565 views

3 years ago

CyberJAR
Java 26 Preview: New JEPs and What They Mean for You

Java 26 is the next feature release that brings features for enhanced performance, security, and developer experience. This video ...

6:47
Java 26 Preview: New JEPs and What They Mean for You

776 views

13 days ago

Java
Scoped Values in Java 24 - Inside Java Newscast #86

Scoped values enable a method to share immutable data both with its callees within a thread and with child threads in a ...

7:39
Scoped Values in Java 24 - Inside Java Newscast #86

10,695 views

10 months ago