New Java 23 Preview feature - Flexible constructor bodies!

preview_player
Показать описание
Join this channel to get access to perks:
Рекомендации по теме
Комментарии
Автор

I have been following you since the year when I joined and started working as a developer, 15 years ago, you are one of the finest teachers I have ever met. I should really appreciate you as you played an important role in setting up my many fundamental concepts about Java. Thank you.

pat.
Автор

Looks like java isn't gonna die anytime soon. And I'm very happy about it 😊

ShivaKumarSatakuri
Автор

Thank you for constantly updating us with the new booms of java ! Really appreciate it.

akaappleboy
Автор

Ohh man. I can't express how popular this man is in our group.
Even today, when I stuck anything, I just referred to tutorials, and hundreds of times, I did that.

Sharmarohit
Автор

It took 28 freaking years for them to realize that this must have been supported from the version 1.1 😂😂

DJpiya
Автор

Finally! hope it comes with stable version.

MAYANKKUMAR-iwqp
Автор

i am subscribed from last 10 years not even once i get your update in youtube subscription box yt is wants people to watch dance n controversial things but not education thats why less video on education.. we should have edu platform differently..

javaremastered
Автор

async/await support? dynamic optimal hardware thread use like C# or Golang? Fixes to the terrible package manager? Faster web server? Better lightweight containers? Better native dependency injection? ... better ... some tweaks to Constructors. LOL. Who runs this show, and why do they hate Java developers so much?

Tony-dprl
Автор

Hi, I'm watching the "Docker Essentials" course and videos 1, 11 and 12 are missing. Please fix this - it's a member's course which subscribers pay for!

iddqd
Автор

Where is your java23 video which you had made, I can't find anywhere on youtube.

adarshverma
Автор

public class PositiveBigInteger extends BigInteger {
private PositiveBigInteger(int value){
super(value);
}

public static PositiveBigInteger createOrThrow(int value){
if(value < 0) throw new positive value " + value);
return new PositiveBigInteger(value);
}
}

uleming
Автор

This is a preview not a stable feature, I don't know why the people explain preview features that could be removed on the next lts java.

lts
Автор

What's wrong with calling super before doing validation ?

roronoa_d_law
Автор

I see no point in this feature. If you want to validate that field, then do the validation in the superclass constructor instead of the subclass.

Flw