My teacher gave me 2 classes, one is passport and the other is date.
date contain 3 attributes (string day,string month, string year), getters, setters and 2 constructors, one of them is a copy constructor:
public date(date dt)
this.day=dt.getd();
this.month=dt.getm();
this.yaer=dt.gety();
passport class contain 2 attributes (string name, date exp(from date class))and there is this construcor:
public passport(string name, date exp)
this.name=name;
this.exp= new date(exp);
now in the main class, every time i create new date and new passport, every date is duplicate and i get 1 garbage object for every passport.
how can i get over this garbage object?
If
date
instances are mutable, you don't; you do what you're doing.if
date
instances are immutable (their state cannot be changed once they've been created), then you just use the instance you're given rather than creating a new one:You wouldn't want to do that if
exp
could be modified, because it would create cross-talk between yourpassport
instance and whatever passed theexp
to it.