logo

C# Aggregation (HAS-A-forhold)

I C# er aggregering en prosess der en klasse definerer en annen klasse som enhver enhetsreferanse. Det er en annen måte å gjenbruke klassen på. Det er en assosiasjonsform som representerer HAS-A forhold.

C# Aggregasjonseksempel

La oss se et eksempel på aggregering der Employee class har referansen til Address class som datamedlem. På denne måten kan den gjenbruke medlemmene i Address-klassen.

 using System; public class Address { public string addressLine, city, state; public Address(string addressLine, string city, string state) { this.addressLine = addressLine; this.city = city; this.state = state; } } public class Employee { public int id; public string name; public Address address;//Employee HAS-A Address public Employee(int id, string name, Address address) { this.id = id; this.name = name; this.address = address; } public void display() { Console.WriteLine(id + ' ' + name + ' ' + address.addressLine + ' ' + address.city + ' ' + address.state); } } public class TestAggregation { public static void Main(string[] args) { Address a1=new Address('G-13, Sec-3','Noida','UP'); Employee e1 = new Employee(1,'Sonoo',a1); e1.display(); } } 

Produksjon:

 1 Sonoo G-13 Sec-3 Noida UP