Java 13 – Miscellaneous Changes

Java 13 have introduced three new methods to java.nio.file.FileSystems to treat the content of a file as a file system easily. newFileSystem(Path) newFileSystem(Path, Map<String, ?>) newFileSystem(Path, Map<String, ?>, ClassLoader) Following are other major changes added…

TypeScript continue

In this tutorial, you will learn about the TypeScript continue statement. The continue statement is used to control a loop such as a for loop, a while loop, or a do…while loop. The continue statement skips to the end of the loop and continues the next iteration….

Java 13 – Text Block Methods

Java 12 introduces text blocks to handle multiline strings like JSON/XML/HTML etc and added new methods to String class to handle text blocks. It is a preview feature. stripIndent() – removes incidental white spaces from the…

Java 13 – Text Blocks

Java 13 introduces text blocks to handle multiline strings like JSON/XML/HTML etc. It is a preview feature. Text Block allows to write multiline strings easily without using \r\n. Text Block string have same methods as…

Java 13 – Switch Expressions

Java 12 introduces expressions to Switch statement and released it as a preview feature. Java 13 added a new yield construct to return a value from switch statement. It is still a preview feature. Consider…

Java 13 – Environment Setup

Local Environment Setup If you want to set up your own environment for Java programming language, then this section guides you through the whole process. Please follow the steps given below to set up your…

Java 13 – Overview

Java 13 introduced few language specific features under preview mode to Java and multiple JVM enhancements. This is an introductory tutorial that explains the basic-to-advanced features of Java 13 and their usage in a simple…