Abstract

It is common for object-oriented programs to have both mutable and immutable classes. Immutable classes simplify programing because the programmer does not have to reason about side-effects. Sometimes programmers write immutable classes from scratch, other times they transform mutable into immutable classes. To transform a mutable class, programmers must find all methods that mutate its transitive state and all objects that can enter or escape the state of the class. The analyses are non-trivial and the rewriting is tedious. Fortunately, this can be automated.
We present an algorithm and a tool, Immutator, that enables the programmer to safely transform a mutable class into an immutable class. Two case studies and one controlled experiment show that Immutator is useful. It (i) reduces the burden of making classes immutable, (ii) is fast enough to be used interactively, and (iii) is much safer than manual transformations.

Article

pdf

BibTeX

@article{kjolstad2011immutator,
  title={Transformation for Class Immutability},
  author={Fredrik Kjolstad and Danny Dig and Gabriel Acevedo and Marc Snir},
  journal={33rd International Conference on Software Engineering},
  year={2011},
  month={May}
}