I'm reading Head First Design Patterns and have some understanding in Java. It starts by encapsulating things that vary from your class and putting them in a seperate interface, as opposed to putting those functionality in the subclass. The example they give is an abstract Duck class that can quack or fly depending on the duck. They have an interface for quack and fly (QuackBehavior and FlyBehavior interfaces), and then implement those interfaces in other classes.
In the example, they have the abstract duck class as follows
public abstract class Duck {
QuackBehavior quackBehavior;
FlyBehavior flyBehavior;
.....
}
I guess what is new to me is having an instance variable that is of the interface type. I never learned that before but I'm assuming it's valid? I guess I'm more familiar with having an instance variable of a concrete class. Are there any rules about having instance variables of classes/interfaces like this? Thanks.