Writing cleancode withmodern Java. Miro Cupak, Dnastack

preview_player
Показать описание

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

Covering these topics
1. Private interface methods.
2. Try with resources
3. Switch expression
4. Local variable expression.

varunvats
Автор

Its more like new and cool features of Java rather than Clean codes.

alokuttamshukla
Автор

Great talk, explanation is very clear.

Woutor
Автор

This helped me to decide...
to avoid using type inference

thebosssam
Автор

Very helpful session...simple & informative

nitinagrawal
Автор

Learned quite a lot with this presentation

AnthonyGoubard
Автор

it's a great talk very simple and it's attractive topics

ahmeddowidar
Автор

This jshell thing is by an outstanding amount the worst development environment i have ever seen. Why would someone would want to write code in that?

Pspet
Автор

wonderful presentation. Planning to upgrade to Java 10

coolcoolj
Автор

It's rather about "new Java features" than clean code...

andreyOMARama
Автор

why would things like List<?> be in a talk about "clean code"? It's seems more like a trap for bad coding habits

pengdu
Автор

Never had to use interface default interface method.

tashi
Автор

he shouldve been a lil more specific using wildcards. there is something called the put and get principle when using generics. when the generic is represented by a wildcard you cant add elements to it. the only way to add add elements is using the super keyword Lisr<? super T> . <?> actually means <? extends Object> and when using those you can only get elements out. there is an acronym for this P.E.C.S producer extends (produces meaning it gives) consumer super (consumes meaning we add). but cool presentation.

JuanGarcia-zyyw
Автор

In java 8, you create a helper class in the interface with private static methods and private ctor. You leak out there is a helper class, but with no methods visible and no instatiation possible. Not ideal, private methods on interface are nice, but "there is nothing you can do" is too strong of a statement.

vladimirljubopytnov
Автор

You are talking about clean coffee and readability and using jshell doing even no indentation to demo? You pretty much violated all about clean coffee in first 6 minutes

dinobulja