Aggregation in Java

A class have any entity reference it is know as aggregation.
class Country{   

String countryName="INDIA";

}

class  State

{

String stateName="Karnataka";

Country  countryRef;//Use of aggregation is code reusability 

}

Comments