I am reading the decorative design pattern and could not understand few things I have four classes
public class Computer
{
public Computer()
{
}
public String description()
{
return "computer";
}
}
public abstract class ComponentDecorator extends Computer
{
public abstract String description();
}
public class Disk extends ComponentDecorator
{
Computer computer;
public Disk(Computer c)
{
computer = c;
}
public String description()
{
return computer.description() + " and a disk";
}
}
public class Monitor extends ComponentDecorator
{
Computer computer;
public Monitor(Computer c)
{
computer = c;
}
public String description()
{
return computer.description() + " and a monitor";
}
}
This is the final test class
public class Test
{
public static void main(String args[])
{
Computer computer = new Computer();
computer = new Disk(computer);
computer = new Monitor(computer);
computer = new CD(computer);
computer = new CD(computer);
System.out.println("You're getting a " + computer.description()
+ ".");
}
}
Now the final output is
computer and a disk and a monitor and a cd
The thing which is confusing me is that
1)Why he has taken the same object name computer, why not computer 1 , computer 2)If computer obj is same don't it mean that only last declaration will be valid and other will be overwritten
in my thinking the output should be
computer and a CD