Rust for Java Developers 1/3 - Introduction - [Beginners]

preview_player
Показать описание
Introduction to Rust Language for Java Developers. This could be seen as a first overview before learning the Rust Language from the book or the online tutorials.

- 00:00 - Intro
- 00:22 - Rust Build and Run
- 01:47 - Rust Variables
- 03:07 - Rust Immutable by Default
- 04:37 - Rust Functions
- 05:47 - Rust If/Else and expression
- 08:05 - Rust String (quick overview)
- 09:44 - Rust Struct (~ Java Class)
- 11:08 - Rust Struct Functions (~ Java Static Functions)
- 13:28 - Rust Struct Methods (~Java Methods)
- 15:16 - Rust Trait (~ Java Interfaces)

#rustlang #rustjava

Jeremy Chone:

Other popular Rust Programming videos:

Playlists:

Рекомендации по теме
Комментарии
Автор

These type of videos are the exactly the ones, rust needs!

ruffshokk
Автор

Clear and concise and very relevant to lots of people. Thank you!

JamesColeUk
Автор

Immutable by default is such an advantage. This is my second most missed thing from Java (first is proper generics lol).

LannisterFromDaRock
Автор

Keep in mind that a strong convention in Rust is to use 4 spaces instead of 2.

6:08 In Rust you can do the exact same thing as in Java. The difference is that the uninitialized variable will not have a value at all at first. And the compiler won't let you use it unless it is 100% initialized. But most of the time you would do what he did next.

liptherapy
Автор

Love it! Great for us Java people. Wanted to learn Rust for quite a while now.

Flako-dd
Автор

these are fantastic actually, straight to the point and and easily understandable!

oxey_
Автор

Very fast way to catch up, thank you!

shoockygaming
Автор

Wow!! wonderful Tutorial.The first i tried to learn rust i felt its too overwhelming.but after going through the video the could get the similarly with Java.Thank you.Please continue to make such Videos

sanathkumaru
Автор

Awesome video bro, fundamental to get into rust, success.

SergioRibera
Автор

Its beautiful 🙂 thanks for making this.

sunnysrivastava
Автор

Dude, this video is awesome! I wonder if there's people using this to video to learn Java lol

jonathankee
Автор

I would love one for typescript developers!

irlshrek
Автор

How to take runtime input in rust especially int type?

HeatBlast-wsjy
Автор

Thanks for the video! I have been trying to get better at rust and the thing that slows me down the most is the poor (at least by java standards) IDE support, especially autocomplete. Is there something better than the basic VSS add-on?

jokerServerDE
Автор

rust variables are final by default? lmao
subbed and liked ofc, this is perfect

neuxell
Автор

Nice intro. Learned a lot from it. How do you do the "live reloading" of the Java code? Any script like "cargo watch -q"?

KaiWeber
Автор

6:18 This is not the equivalent of the Java example. The variable in Rust does not need to be mut. You only assign once. And you also wouldn't create a default value.

porky
Автор

What software do you use for the green lines?

JeremiKress
Автор

it seems that kotlin has a lot of the language features that rust has

kmatias
Автор

Why are you not being fair here in java static method can directly call static method why do you need to use the class name as a reference before calling the sayHello method 5:16

D_bugit