devxlogo

Variant Records

Variant Records

Question:
Does Java support an equivalent to the Pascal variant record or C union? I need to port some code to Java that uses these constructs.

Answer:
No, Java does not support the equivalent of variant records or unions. To achieve equivalent functionality, you can declare a class that contains all the fields you want. The disadvantage of this approach is that you don’t get the memory space savings offered by variantrecords and unions. Also, it is not very object-oriented. Variant records and unions often are used to implement a form of polymorphism. The best way to port code that does this is to create a base class defining common methods and then derive several subclasses, one for each union field. Any code that operates on the data structures should do so by accessing the common virtual methods, rather than directly accessing the fields. If there is no usable polymorphism atwork in your original code, then just separate out the variant record fields as separate data structures.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist