Tag: compactconstructor

  • 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…