You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: java-18/README.md
+3-5
Original file line number
Diff line number
Diff line change
@@ -16,9 +16,7 @@ To run each example use: `java --enable-preview --source 18 <FileName.java>`
16
16
17
17
## Features
18
18
19
-
### Language
20
-
21
-
* chartset UTF-8 will be default for all O.S.
19
+
***Chartset UTF-8 by Default**
22
20
* to see which is default: `java -XshowSettings:properties -version 2>&1 | grep file.encoding`
23
21
* we can change the chartset with property: `-Dfile.encoding=UTF-8`
24
22
* affected classes:
@@ -28,11 +26,11 @@ To run each example use: `java --enable-preview --source 18 <FileName.java>`
28
26
*`URLEncoder` and `URLDecoder`
29
27
* the `System.out` and `System.err` will use the same charset from the terminal
30
28
* we can see with: `Console.charset()`
31
-
* Pattern matching for `switch`
29
+
***Pattern Matching for `switch` (second preview)**
32
30
* Minor improvements from JDK 17:
33
31
* refined to use dominance checking that will force constant case label to appear before a guarded pattern of the same type;
34
32
* exhaustiveness checking is now more precise with sealed hierarchies.
35
-
* Code snippet in Java Doc
33
+
***Code snippet in Java Doc**
36
34
* was introduced the `@snippet` tag to help write code fragments in Java docs
37
35
* 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
Copy file name to clipboardexpand all lines: java-19/README.md
+4-6
Original file line number
Diff line number
Diff line change
@@ -14,15 +14,13 @@ To run each example use: `java --enable-preview --source 19 <FileName.java>`
14
14
15
15
## Features
16
16
17
-
### Language
18
-
19
-
* Pattern matching for `switch`
17
+
***Pattern Matching for `switch` (third preview)**
20
18
* minor improvements from JDK 18:
21
19
* changed guarded pattern from `&&` to `when` keyword
22
20
* definition: guard is the boolean expression, guarded pattern is the case with guard
23
21
* guarded pattern: `case Hero h when h.getCity() == Cities.NEW_YORK`
24
22
* guard: `h.getCity() == Cities.NEW_YORK`
25
-
* Record patterns
23
+
***Record Patterns (preview)**
26
24
* added suport to deconstruct record values in pattern matcher
27
25
* record pattern: `Point(int x, int y)`
28
26
* 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>`
31
29
* now we can use type pattern and record pattern together
32
30
* we can check the type and extract the record components using `instanceof` operator
33
31
*`o instanceOf Point(int x, int y)`
34
-
* Virtual Threads:
32
+
***Virtual Threads (preview)**
35
33
* also called user-mode threads or [fiber](https://en.wikipedia.org/wiki/Fiber_(computer_science))
36
34
* more notes about Project Loom [here](../projects/loom/)
37
35
*`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>`
86
84
*`Thread.ofPlatform().start(() -> {})`;
87
85
***do not use** any cached method from `Executors`.
88
86
*[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)**
90
88
* goal is simplify multithreaded programming;
91
89
* treats multiple tasks running in different threads as a single unit of work:
Copy file name to clipboardexpand all lines: java-20/README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -14,16 +14,16 @@ To run each example use: `java --enable-preview --source 20 <FileName.java>`
14
14
15
15
## Features
16
16
17
-
* Record patterns (second preview)
17
+
***Record Patterns (second preview)**
18
18
* added support for inference of type arguments of generic record patterns;
19
19
* now it generic type can be inferred
20
20
* 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))`
21
21
* added support for record patterns to appear in the headere of an enhanced for statement;
22
22
*`for (Point(var x, var y) : shapePoints)`
23
23
* remove support for named record pattner.
24
-
* Patteren matching for `switch` (fourth preview)
24
+
***Patteren Matching for `switch` (fourth preview)**
25
25
* added support for inference of type arguments for generic record patterns
26
-
* Virtual threads (second preview)
26
+
***Virtual Threads (second preview)**
27
27
* small numbeer of API changes described by JEP 425 were made permanent in JDK 19 and are not proporsed to preview:
28
28
*`Thread.join(Durantion)`
29
29
*`Thread.sleep(Duration)`
@@ -32,7 +32,7 @@ To run each example use: `java --enable-preview --source 20 <FileName.java>`
32
32
*`Future.exceptionNow()`
33
33
*`Future.state()`
34
34
*`ExecutorService` extends `AutoClosable`
35
-
* Scoped values (incubator)
35
+
***Scoped Values (incubator)**
36
36
* enable the sharing of immutable data within and across threads
37
37
* it were inspired by the way that Lipst dialects provide support for dyanamically scoped free variables
38
38
* 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>`
86
86
* the binding will remains until the child thread are finished and we can use `StructuredTaskScoped.join` to ensure
87
87
that the child threads will terminate before `run`/`call`
88
88
* when we try to access a scoped value not shared with current thread an exception `NoSuchElementException` will be thrown
0 commit comments