Both are building (Has - A - Relationship).

Composition (strong)

class Car {
	private Engine engine;
}

Aggregation (weak)

class Team {
	private Player player;
}