
- Java 16 Tutorial
- Java 16 - Home
- Java 16 - Overview
- Java 16 - Environment Setup
- Java 16 Language Changes
- Java 16 - Sealed Classes
- Java 16 - Pattern Matching for instanceof
- Java 16 - Warnings for Value-Based Classes
- Java 16 - Record
- Java 16 JVM Changes
- Java 16 - Packaging Tools
- Java 16 - Garbage Collectors
- Java 16 - Other Changes
- Java 16 - Deprecation & Removals
- Java Other Versions Tutorials
- Java Tutorial
- Java 8 Tutorial
- Java 9 Tutorial
- Java 10 Tutorial
- Java 11 Tutorial
- Java 12 Tutorial
- Java 13 Tutorial
- Java 14 Tutorial
- Java 15 Tutorial
- Java 16 Useful Resources
- Java 16 - Quick Guide
- Java 16 - Useful Resources
- Java 16 - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java 16 - Record
Java 14 introduces a new class type record as preview feature to facilitate creation of immutable data objects. Java 15 enhances record type further. With Java 16, record is now a standard feature of JDK.
Consider the following example −
ApiTester.java
Example
public class APITester { public static void main(String[] args) { StudentRecord student = new StudentRecord (1, "Julie", "Red", "VI", 12); System.out.println(student.id()); System.out.println(student.name()); System.out.println(student); } } record StudentRecord(int id, String name, String section, String className, int age){}
Compile and Run the program
$javac APITester.java $java APITester
Output
1 Julie StudentRecord[id=1, name=Julie, section=Red, className=VI, age=12]
Advertisements