The Power and Practicality of Immutability by Venkat Subramaniam

  Рет қаралды 40,035

Devoxx

Devoxx

6 жыл бұрын

Functional Programming promotes assignment-less programming. When we remove mutability, we reduce errors in code. How practical is it to really program with immutability in Java and if we manage to achieve that, what are the real benefits. Come to this talk to learn about the power, the benefits that immutability brings and how to practically make use of that in Java.
Dr. Venkat Subramaniam is an award-winning author, founder of Agile Developer, Inc., creator of agilelearner.com, and an instructional professor at the University of Houston. He has trained and mentored thousands of software developers in the US, Canada, Europe, and Asia, and is a regularly-invited speaker at several international conferences. Venkat helps his clients effectively apply and succeed with sustainable agile practices on their software projects.
Venkat is a (co)author of multiple technical books, including the 2007 Jolt Productivity award winning book Practices of an Agile Developer. You can find a list of his books at agiledeveloper.com. You can reach him by email at venkats@agiledeveloper.com or on twitter at @venkat_s.

Пікірлер: 33
@andersonmontanez8318
@andersonmontanez8318 4 жыл бұрын
Congratz Mr Venkat, your talks are always a sea a knowledge :)
@sriganeshnagaraj9626
@sriganeshnagaraj9626 4 жыл бұрын
Very good question and answer at 50:23
@ssougnez
@ssougnez 3 жыл бұрын
Man, that was awesome....
@orel1996
@orel1996 5 жыл бұрын
Great lecture thank you
@ILyaCyclone
@ILyaCyclone 5 жыл бұрын
Great talk, thanks a lot for the speaker.
@bawaparampreet24
@bawaparampreet24 4 жыл бұрын
he goofs up the example performance of imperative vs declarative.
@crabsynth3480
@crabsynth3480 4 жыл бұрын
What do u mean? Could u mention the time and what was goofed up?
@reallylordofnothing
@reallylordofnothing 6 ай бұрын
@@crabsynth3480 he wanted to show that stream calls a collection of functions on each piece of data as opposed to imperative which calls functions on collection of data but both yellow stickers are the same, so not sure what he was trying to say there.
@surendrabisht2523
@surendrabisht2523 2 жыл бұрын
great.
@bg8048
@bg8048 6 жыл бұрын
In the immutable example of factor shown here. Is it good practise to assign the factor to another local variable so that function remains pure as long as code doesn't have any other dependencies on that local variable ?
@eldiosdelcielo
@eldiosdelcielo 8 ай бұрын
needless to say u rock
@chordfunc3072
@chordfunc3072 4 жыл бұрын
39:50 Awesome had to try it in dart and with Rx observables :p
@reallylordofnothing
@reallylordofnothing 6 ай бұрын
Could you explain what is the difference between the two yellow sticky notes? they both are the same, so how did he explain the distinction between functions on all your data and collection of functions on each piece of data?
@Rajs4u
@Rajs4u 5 жыл бұрын
Why to unfriend from FB if any body using goto 😂😂
@swatibhatt9509
@swatibhatt9509 5 жыл бұрын
As mentioned in 20:52 , Can you please explain how are you achieving thread safety using stream?
@armansingh3405
@armansingh3405 4 жыл бұрын
concurrentCollections would be used internally when relying on collectors with parallel streams.
@tarunpahuja3443
@tarunpahuja3443 2 жыл бұрын
I think point is stream uses lamba and lamba mandate variable to be effectively final.
@leonk6950
@leonk6950 5 жыл бұрын
What is that editor with the live-evaluation of java?
@saloalvStuff
@saloalvStuff 5 жыл бұрын
This gets posted on every one of his talks. According to other commenters, it's TextMate, a Mac OS X exclusive editor.
@USONOFAV
@USONOFAV 4 жыл бұрын
How can you make your Object immutable when you pass it along in your java 8 stream pipeline? Would it be ok to mutate object within the stream pipeline functions since only one thread will execute the whole pipeline?
@dislikepineapples
@dislikepineapples 3 жыл бұрын
I think usually you will create a new refence with the mutation applied to it, but I am a beginner to functional programming, so I am not sure.
@richardlyons7408
@richardlyons7408 4 жыл бұрын
For summing even numbers, why is he multiplying each even number by 2?
@madhukiranattivilli2321
@madhukiranattivilli2321 Жыл бұрын
@46:00 -- "Impure code" line #13 "factor[0] = 0;" would be executed only after the stream methods pipeline on lines 10-11 ends. If so, how is the value of 0 going into the body of Function.apply() for factor[0] but not 2? I understand why this is called impure code, but in this particular context -- this is confusing! Anyone understood the inner meaning?
@pritishnayak
@pritishnayak Жыл бұрын
Streams do not start running the pipeline until there's something collecting from them. In the example, venkat gave, the stream started collection on line 15 because forEach is a terminal operation.
@madhukiranattivilli2321
@madhukiranattivilli2321 Жыл бұрын
@@pritishnayak Yes. Thanks for writing I realized this that day itself. Forgot to remove my msg :) Initially I didn't notice that stream object was assigned on line 10.
@trinhduyhung8211
@trinhduyhung8211 2 жыл бұрын
There seems to be something wrong with the increment method at 12:50. Anybody with me?
@duhudu
@duhudu 2 жыл бұрын
what do you mean? It's simply incrementing the passed value by 1 and passing the incremented value to next call stack.
@sushabh123
@sushabh123 3 жыл бұрын
25:11 totally relatable. Hahhaa
@user-gk4zw9sf4r
@user-gk4zw9sf4r 5 жыл бұрын
Why did he take off his shoes?
@ebuzertahakanat
@ebuzertahakanat 4 жыл бұрын
why not?
@willingtushar
@willingtushar 2 жыл бұрын
all good but the way he's pronouncing immutability, is something I can't handle
@vjmonik4792
@vjmonik4792 2 жыл бұрын
Great insights. Two suggestions 1. Take a little complex examples. Everything he talks is about arrays and for loops. 2 he needs to be more crisp in his talks and videos can be half length. He repeats things too many times.
@dinuvsgmail
@dinuvsgmail 2 жыл бұрын
Dude is certainly in a hurry
Twelve Ways to Make Code Suck Less by Venkat Subramaniam
1:00:44
Exploring Collectors by Venkat Subramaniam
2:24:38
Devoxx
Рет қаралды 78 М.
ВОДА В СОЛО
00:20
⚡️КАН АНДРЕЙ⚡️
Рет қаралды 33 МЛН
Nastya and SeanDoesMagic
00:16
Nastya
Рет қаралды 41 МЛН
No empty
00:35
Mamasoboliha
Рет қаралды 10 МЛН
Reactive Programming in Java by Venkat Subramaniam
48:53
Devoxx
Рет қаралды 21 М.
Immutability - Computerphile
10:05
Computerphile
Рет қаралды 97 М.
Refactoring to Immutability - Kevlin Henney
1:03:22
NDC Conferences
Рет қаралды 93 М.
Do not walk away from Complexity, Run - Venkat Subramaniam
57:03
Being A Java Developer Is The Best Job In The World
17:29
Continuous Delivery
Рет қаралды 54 М.
"Outperforming Imperative with Pure Functional Languages" by Richard Feldman
34:55
Strange Loop Conference
Рет қаралды 87 М.
Optional - The Mother of All Bikesheds by Stuart Marks
58:43
Bluetooth connected successfully 💯💯
0:16
Blue ice Comedy
Рет қаралды 1,3 МЛН
АЙФОН 20 С ФУНКЦИЕЙ ВИДЕНИЯ ОГНЯ
0:59
КиноХост
Рет қаралды 1,2 МЛН
Частая ошибка геймеров? 😐 Dareu A710X
1:00
Вэйми
Рет қаралды 4,9 МЛН