Obyek immutable ora bisa diowahi sawisé dikonstruksi — saben kolom diatur sedhela, lan ora ana metode sing ngrubah status. Kanggo "ngrubah" obyek kasebut, sampeyan kudu nggawe obyek anyar.
Nggawe tipe immutable
java
{
cents;
String currency;
{
.cents = cents;
.currency = currency;
}
Money {
(.cents + other.cents, currency);
}
{ cents; }
}
