|
You are here |
www.morling.dev | ||
| | | | |
inside.java
|
|
| | | | | The Simple Web Server was added to the `jdk.httpserver` module in JDK 18. It is a minimal HTTP static file server, designed to be used for prototyping, testing, and debugging. This article explores some less obvious yet interesting programmatic appl... | |
| | | | |
netopyr.com
|
|
| | | | | So far, all of the examples in my previous article about how to use JavaFX objects in Java code expected the object as an input parameter. But what if you want to create a JavaFX object directly? In t | |
| | | | |
componenthouse.com
|
|
| | | | | I have been testing java optimizations latelyand I have found a bug in the Java compiler by accident. The JDK version I use is 8 update 112, which is the latest production release available at this point (Dec 28, 2016). I have justreported the bug to Oracle, hopefully they will fix it soon. I will... | |
| | | | |
danielpecos.com
|
|
| | | Purpose of this post is to providea glimpse of the new features included in Java 8 that shiftthis language towards a more Functional Programming paradigm. But before, let's define what we understand for Functional Programming (FP). Functional programming key characteristics include: Higher Order Functions Pure Functions and Immutability Tail Call Recursion Higher Order Functions for a FP language means that functions are considered first class citizens, allowing the programmer to use them as any other value the language defines, for example, a Function value: | ||