https://github.com/mohamed-taman/java-se-code-examples
IBM Developers Work related articles code, this repository contains a collection of Java SE code examples from java SE 8/9-14 and next, applicable to day by day job tasks
https://github.com/mohamed-taman/java-se-code-examples
collections-framework http2 java java11 java12 java8 javafx
Last synced: 15 days ago
JSON representation
IBM Developers Work related articles code, this repository contains a collection of Java SE code examples from java SE 8/9-14 and next, applicable to day by day job tasks
- Host: GitHub
- URL: https://github.com/mohamed-taman/java-se-code-examples
- Owner: mohamed-taman
- License: mit
- Created: 2018-11-05T16:31:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-17T15:55:17.000Z (over 5 years ago)
- Last Synced: 2025-03-24T14:51:23.344Z (about 1 month ago)
- Topics: collections-framework, http2, java, java11, java12, java8, javafx
- Language: Roff
- Homepage: https://developer.ibm.com/series/java-theory-and-practice/#about-this-series
- Size: 12.8 MB
- Stars: 20
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IBM Developer articles - Java theory and practice
## Motivation toward Modularity
### 1- [Java 9+ modularity: The theory and motivations behind modularity](https://developer.ibm.com/technologies/java/tutorials/java-modularity-1)
The modular capabilities introduced in Java 9+ will enable you to write more clean and well-architected code, libraries, and systems
### 2- [Java 9+ modularity: Module basics and rules](https://developer.ibm.com/tutorials/java-modularity-2/)
Discover the basic mechanisms, tools, and rules that you can use to leverage the modular capabilities of Java 9+ and the JPMS to write more clean and well-architected code, libraries, and systems.
### 3- [Java 9+ modularity: How to design packages and create modules, Part 1](https://developer.ibm.com/tutorials/java-modularity-3/)
The Java Platform Module System brings the real meaning of security and tightened encapsulation to Java.
### 4- [Java 9+ modularity: How to design packages and create modules, Part 2](https://developer.ibm.com/tutorials/java-modularity-4/)
The Java Platform Module System brings the real meaning of security and tightened encapsulation to Java.
### 5- [Java 9+ modularity: The difficulties and pitfalls of migrating from Java 8 to Java 9+](https://developer.ibm.com/tutorials/java-modularity-5/)
Explore the tools and techniques to help you move your code efficiently to the new modular Java.## New Java language features & updates and learning tools
Starting with the major release of Java SE 9+, each new six-month release of the JDK means that the programming language and virtual machine is quickly moving forward in order to cope with the rate of new technology innovation.Each version since Java SE 9, through Java SE 12, includes a bundle of changes, more library additions, new language features, and alterations to the JDK clean-up process.
This series takes you on an exploration of the most significant updates and changes to help you get ahead on the next iteration of Java coding.
Series link on IBM Developer [website](https://developer.ibm.com/series/java-theory-and-practice/#about-this-series)
### 6- [Explore new Java SE 11 & 12 APIs and language features](https://developer.ibm.com/tutorials/java-theory-and-practice-1/)
Explore new classes, security features, HTTP Client, and a no-compile code launch technique that every developer should know.
### 7- [Java 11: Run single-file source code programs without compilation](https://developer.ibm.com/tutorials/java-theory-and-practice-2/)
Explore this convenient Java 11 feature that allows you to directly run a Java source code file without compilation.
### 8- [Explore the new Java SE 11 HTTP Client and WebSocket APIs](https://developer.ibm.com/tutorials/java-theory-and-practice-3/)
New Java 11 APIs that are easy to use for simple cases, but also powerful enough for complex ones.
### 9- [Interactive Java programming (REPL) with JShell 12, Part 1](https://developer.ibm.com/tutorials/java-theory-and-practice-4/)
Learn how this read-eval-print loop environment can help you explore new features in a fast way.
### 10- [Interactive Java programming (REPL) with JShell 12, Part 2](https://developer.ibm.com/tutorials/java-theory-and-practice-5/)
Learn how to use auto-complete and add JAR files, classes, and modules to sessions.
### 11- [Effective use of the new switch statement and expression in Java SE 12](https://developer.ibm.com/tutorials/java-theory-and-practice-6/)
Simplify everyday coding and prepare the way for using pattern matching.