Category: java14

  • How to use Records in Java

    Java 14 came up with a new feature called Records to reduce boiler plate code. One criticism against Java is that it takes too much code to achieve something compared to other languages like Python. The recent features in Java have been primarily targeted to reduce its verbosity. Records are one such feature. Usually when…

  • What are the new features in Java 14 that a day to day Java developer should know?

    There are about 16 changes introduced in Java 14. Not all of them need to be known for a day to day java programmer to improve his programming. Here are the 5 features which every Java developer should know which will save his time and improve code quality: Text Blocks If you want to define…