Skip to content

Commit 9300a80

Browse files
committed
improve readability
1 parent 2ebbabc commit 9300a80

File tree

11 files changed

+75
-89
lines changed

11 files changed

+75
-89
lines changed

java-10/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ java -cp bin <ClassName>
2222

2323
## Features
2424

25-
### Language
26-
2725
* `var` keyword to declare variables
2826
* `var universeAnswer = 42`
2927
* Process API improvements

java-11/README.md

+30-29
Original file line numberDiff line numberDiff line change
@@ -29,43 +29,44 @@ java -cp bin <ClassName>
2929

3030
## Features
3131

32-
### Language
33-
34-
* Removal of modules and deprecated API
35-
* Removal of Java EE Modules
32+
* **Removal of Modules and Deprecated API**
33+
* removal of Java EE Modules:
3634
* JAF
3735
* CORBA
3836
* JTA
3937
* JAXB
4038
* JAX-WS
4139
* Commons Annotation
4240
* JavaFX
43-
* Scripting
44-
* Shebang
41+
* **Scripting**
42+
* **Shebang**
4543
* `#!/opt/jdk-11/bin/java --source 11`
46-
* var in lambda expressions
47-
* allowing to use annotation without specifying the type: `.filter((@Nonnull var item) -> isAllowed(item))`
48-
* API improvements
49-
* String
50-
* `lines()`: to streaming the lines from a string
51-
* `strip()`, `stripLeading()` and `stripTrailing()`
52-
* `repeat(int)`
53-
* `isBlank()`
54-
* Path
55-
* `of(String, String...)` and `of(URI)`
56-
* Files
57-
* `readString(Path)`: read the entire content from a file as a String - `Files.readString(Path.of("message.txt"))`
58-
* `writeString(Path, CharSequence, OpenOption...)` write a String to a file - `Files.writeString(Path.of("message.txt"), updatedMessage)`
59-
* Null I/O
60-
* `InputStream.nullInputStream()`: empty input stream
61-
* `OutputStream.nullOutputStream()`: output stream that discards input bytes
62-
* `Reader.nullReader()`: empty reader
63-
* `Writer.nullWriter()`: writer that discards input content
64-
* New better way to turn a collection into an array
65-
* `String[] array = list.toArray(String[]::new)`
66-
* `Optional::isEmpty`
67-
* `Predicate::not`
68-
* `Pattern::asMatchPredicate`
44+
* **`var` in Lambda Expressions**
45+
* allowing to use annotation without specifying the type
46+
* `.filter((@Nonnull var item) -> isAllowed(item))`
47+
48+
### API
49+
50+
* String
51+
* `lines()`: to streaming the lines from a string
52+
* `strip()`, `stripLeading()` and `stripTrailing()`
53+
* `repeat(int)`
54+
* `isBlank()`
55+
* Path
56+
* `of(String, String...)` and `of(URI)`
57+
* Files
58+
* `readString(Path)`: read the entire content from a file as a String - `Files.readString(Path.of("message.txt"))`
59+
* `writeString(Path, CharSequence, OpenOption...)` write a String to a file - `Files.writeString(Path.of("message.txt"), updatedMessage)`
60+
* Null I/O
61+
* `InputStream.nullInputStream()`: empty input stream
62+
* `OutputStream.nullOutputStream()`: output stream that discards input bytes
63+
* `Reader.nullReader()`: empty reader
64+
* `Writer.nullWriter()`: writer that discards input content
65+
* New better way to turn a collection into an array
66+
* `String[] array = list.toArray(String[]::new)`
67+
* `Optional::isEmpty`
68+
* `Predicate::not`
69+
* `Pattern::asMatchPredicate`
6970

7071
### JVM
7172

java-12/README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,15 @@ To run each example use: `java --enable-preview --source 12 <FileName.java>`
1616

1717
## Features
1818

19-
### Language
20-
21-
* Switch expression
22-
* Collectors.teeing
19+
* Switch Expression (preview)
20+
* Compact Number Format
21+
* `Collectors.teeing`
2322
* More Versatile Error Recovery With CompletableFuture
2423
* `exceptionallyAsync(Function<Throwable, ? extends T> f)`
2524
* `exceptionallyAsync(Function<Throwable, ? extends T> f, Executor e)`
2625
* `exceptionallyCompose(Function<Throwable, ? extends CompletionStage<T>> f)`
2726
* `exceptionallyComposeAsync(Function<Throwable, ? extends CompletionStage<T>> f)`
2827
* `exceptionallyComposeAsync(Function<Throwable, ? extends CompletionStage<T>> f, Executor e)`
29-
* Compact Number Format
3028

3129
### JVM
3230

java-13/README.md

+12-11
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,20 @@ To run each example use: `java --enable-preview --source 13 <FileName.java>`
1212

1313
## Features
1414

15-
### Language
16-
17-
* Switch expressions improvements
15+
* **Switch Expressions (second preview)**
1816
* Changed `break` from Java 12 to `yield`
19-
* Text blocks
17+
* **Text Blocks (preview)**
2018
* flag to compile: `-Xlint:text-blocks`
21-
* API improvements
22-
* String methods:
23-
* `stripIdent`: same operation done by the compiler to strip incidental identation from text block';
24-
* `translateEscapes`: same operation done by the compiler to translate escapes in strings;
25-
* `formatted`: shortcut to String.format '`"%s years old".formatted(42)`)
26-
* NIO improvements
27-
* Socket and ServerSocket reimplementation (alignment to [Project Loom](https://openjdk.java.net/projects/loom/))
19+
* **Reimplement Legacy Socket API**
20+
* `Socket` and `ServerSocket` reimplementation (alignment to [Project Loom](https://openjdk.java.net/projects/loom/))
21+
22+
### API
23+
24+
* String methods:
25+
* `stripIdent`: same operation done by the compiler to strip incidental identation from text block';
26+
* `translateEscapes`: same operation done by the compiler to translate escapes in strings;
27+
* `formatted`: shortcut to String.format '`"%s years old".formatted(42)`)
28+
* NIO improvements
2829

2930
### JVM
3031

java-14/README.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,13 @@ To run each example use: `java --enable-preview --source 14 <FileName.java>`
2323

2424
## Features
2525

26-
### Language
27-
28-
* Switch expressions
26+
* **Switch Expressions**
2927
* Promotion to standard
30-
* Text blocks improvements (preview)
28+
* **Text Blocks (second preview)**
3129
* added new flags
32-
* Pattern matching for `instanceof`
30+
* **Pattern Matching for `instanceof` (preview)**
3331
* added as Preview
34-
* Records
32+
* **Records (preview)**
3533
* added as Preview
3634
* Notes:
3735
* Does not have a `extends` clause, only extends `java.lang.Record`;
@@ -40,7 +38,7 @@ To run each example use: `java --enable-preview --source 14 <FileName.java>`
4038
* Its components are final and cannot be updated via reflection (throw `IllegalAccessException`);
4139
* Cannot declare native methods;
4240
* Local records is always static (local class and enum as never static).
43-
* JFR Event Streaming
41+
* **JFR Event Streaming**
4442
* [Here](https://github.com/flight-recorder/health-report) is a great example of a tool built
4543

4644
### JVM

java-15/README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ To run each example use: `java --enable-preview --source 15 <FileName.java>`
2121

2222
## Features
2323

24-
### Language
25-
26-
* Sealed types
24+
* **Sealed Types**
2725
* Restrict which types can extend/implement a type
2826
* Constraints:
2927
* The sealed class and its permitted subclasses must belong to the same module, and, if declared in an unnamed module, the same package.
@@ -32,9 +30,9 @@ To run each example use: `java --enable-preview --source 15 <FileName.java>`
3230
* `final`
3331
* `sealed`
3432
* `non-sealed` (back to a normal class open to extensibility)
35-
* Pattern matching for `instanceof` (second preview - no changes)
36-
* Text blocks (standard)
37-
* Records (second preview)
33+
* **Pattern Matching for `instanceof` (second preview - no changes)**
34+
* **Text Blocks (standard)**
35+
* **Records (second preview)**
3836
* Integration with sealed types in interfaces
3937
* The combination of record and sealed types is referred as algebraic data types.
4038

java-16/README.md

+6-8
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,19 @@ To run each example use: `java --enable-preview --source 16 <FileName.java>`
2424

2525
## Features
2626

27-
### Language
28-
29-
* Pattern matching for `instanceof` (standard)
30-
* Record
27+
* **Pattern Matching for `instanceof` (standard)**
28+
* **Records**
3129
* now we can declare static class or a record in an inner class
32-
* Warnings for [Value-Based Classes](https://docs.oracle.com/en/java/javase/15/docs/api/java.base/java/lang/doc-files/ValueBased.html)
30+
* **Warnings for [Value-Based Classes](https://docs.oracle.com/en/java/javase/15/docs/api/java.base/java/lang/doc-files/ValueBased.html)**
3331
* starting the preparatives for Project Valhalla (can't wait for it to be fully implemented)
3432
* warning the using value-based classes in synchronization and flag to force an error (1) or log (2)
3533
* flag: `-XX:DiagnoseSyncOnValueBasedClasses=1|2`
3634
* starting with primitive wrappers (but soon might be expanded)
37-
* Foreign-Memory Access API
35+
* **Foreign-Memory Access API (third incubator)**
3836
* change in the API
39-
* Sealed classes (second preview)
37+
* **Sealed Classes (second preview)**
4038
* `sealed`, `non-sealed` and `permits` became contextual keywords (we can use it as var name or method name)
41-
* Unix-Domain Socket Channels
39+
* **Unix-Domain Socket Channels**
4240

4341
### JVM
4442

java-17/README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,12 @@ To run each example use: `java --enable-preview --source 17 <FileName.java>`
2121

2222
## Features
2323

24-
### Language
25-
26-
* Sealed classes (standard)
27-
* Pattern matching for switch (preview)
24+
* **Sealed Classes (standard)**
25+
* **Pattern Matching for `switch` (preview)**
2826
* improved switch to support pattern matching for types (like `instanceof`)
2927
* support for `null` case
3028
* support for guards where we can use a boolean expression like `case String s && s.length > 10:`
31-
* Pseudo-Random Number Generators (PRNG)
29+
* **Pseudo-Random Number Generators (PRNG)**
3230
* created new classes to generate number
3331
* two groups of PRNG algorithms:
3432
* splittable (LXM family):

java-18/README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ To run each example use: `java --enable-preview --source 18 <FileName.java>`
1616

1717
## Features
1818

19-
### Language
20-
21-
* chartset UTF-8 will be default for all O.S.
19+
* **Chartset UTF-8 by Default**
2220
* to see which is default: `java -XshowSettings:properties -version 2>&1 | grep file.encoding`
2321
* we can change the chartset with property: `-Dfile.encoding=UTF-8`
2422
* affected classes:
@@ -28,11 +26,11 @@ To run each example use: `java --enable-preview --source 18 <FileName.java>`
2826
* `URLEncoder` and `URLDecoder`
2927
* the `System.out` and `System.err` will use the same charset from the terminal
3028
* we can see with: `Console.charset()`
31-
* Pattern matching for `switch`
29+
* **Pattern Matching for `switch` (second preview)**
3230
* Minor improvements from JDK 17:
3331
* refined to use dominance checking that will force constant case label to appear before a guarded pattern of the same type;
3432
* exhaustiveness checking is now more precise with sealed hierarchies.
35-
* Code snippet in Java Doc
33+
* **Code snippet in Java Doc**
3634
* was introduced the `@snippet` tag to help write code fragments in Java docs
3735
* the goals is to provide a way to get this fragments (so it can be validated by other tool), enable syntax highlighting and provide better IDE support
3836
* code snippet suports:

java-19/README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,13 @@ To run each example use: `java --enable-preview --source 19 <FileName.java>`
1414

1515
## Features
1616

17-
### Language
18-
19-
* Pattern matching for `switch`
17+
* **Pattern Matching for `switch` (third preview)**
2018
* minor improvements from JDK 18:
2119
* changed guarded pattern from `&&` to `when` keyword
2220
* definition: guard is the boolean expression, guarded pattern is the case with guard
2321
* guarded pattern: `case Hero h when h.getCity() == Cities.NEW_YORK`
2422
* guard: `h.getCity() == Cities.NEW_YORK`
25-
* Record patterns
23+
* **Record Patterns (preview)**
2624
* added suport to deconstruct record values in pattern matcher
2725
* record pattern: `Point(int x, int y)`
2826
* the variable `int x` is initialized with the result of accessor method `Point.x()`, not directly from the field `x`
@@ -31,7 +29,7 @@ To run each example use: `java --enable-preview --source 19 <FileName.java>`
3129
* now we can use type pattern and record pattern together
3230
* we can check the type and extract the record components using `instanceof` operator
3331
* `o instanceOf Point(int x, int y)`
34-
* Virtual Threads:
32+
* **Virtual Threads (preview)**
3533
* also called user-mode threads or [fiber](https://en.wikipedia.org/wiki/Fiber_(computer_science))
3634
* more notes about Project Loom [here](../projects/loom/)
3735
* `Virtual threads are lightweight threads that dramatically reduce the effort of writing, maintaining, and observing high-throughput concurrent applications`
@@ -86,7 +84,7 @@ To run each example use: `java --enable-preview --source 19 <FileName.java>`
8684
* `Thread.ofPlatform().start(() -> {})`;
8785
* **do not use** any cached method from `Executors`.
8886
* [here](platform-thread-vs-virtual-thread.md) is some details about the Platform Thread vs Virtual Thread examples
89-
* Structured Concurrency
87+
* **Structured Concurrency (preview)**
9088
* goal is simplify multithreaded programming;
9189
* treats multiple tasks running in different threads as a single unit of work:
9290
* streamlining error handling and cancellation

java-20/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ To run each example use: `java --enable-preview --source 20 <FileName.java>`
1414

1515
## Features
1616

17-
* Record patterns (second preview)
17+
* **Record Patterns (second preview)**
1818
* added support for inference of type arguments of generic record patterns;
1919
* now it generic type can be inferred
2020
* given `record Decorator<T>(T t) {}` and variable `Decorator<Decorator<String>> wr`, the record pattern generic type can be inferred in `w insteaceof Decorator(Decorator(var s))`
2121
* added support for record patterns to appear in the headere of an enhanced for statement;
2222
* `for (Point(var x, var y) : shapePoints)`
2323
* remove support for named record pattner.
24-
* Patteren matching for `switch` (fourth preview)
24+
* **Patteren Matching for `switch` (fourth preview)**
2525
* added support for inference of type arguments for generic record patterns
26-
* Virtual threads (second preview)
26+
* **Virtual Threads (second preview)**
2727
* small numbeer of API changes described by JEP 425 were made permanent in JDK 19 and are not proporsed to preview:
2828
* `Thread.join(Durantion)`
2929
* `Thread.sleep(Duration)`
@@ -32,7 +32,7 @@ To run each example use: `java --enable-preview --source 20 <FileName.java>`
3232
* `Future.exceptionNow()`
3333
* `Future.state()`
3434
* `ExecutorService` extends `AutoClosable`
35-
* Scoped values (incubator)
35+
* **Scoped Values (incubator)**
3636
* enable the sharing of immutable data within and across threads
3737
* it were inspired by the way that Lipst dialects provide support for dyanamically scoped free variables
3838
* they are preferred to thread-local variables (specially using virtual threads)
@@ -86,7 +86,7 @@ To run each example use: `java --enable-preview --source 20 <FileName.java>`
8686
* the binding will remains until the child thread are finished and we can use `StructuredTaskScoped.join` to ensure
8787
that the child threads will terminate before `run`/`call`
8888
* when we try to access a scoped value not shared with current thread an exception `NoSuchElementException` will be thrown
89-
* Structured concurrency (second incubator)
89+
* **Structured Concurrency (second incubator)**
9090
* no changes in API since JDK 19
9191
* added support to inheritance of scoped values
9292

0 commit comments

Comments
 (0)