Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the constructor resolution order?

How does Castle Windsor determine which constructor to resolve when there are multiple constructors present?

like image 265
vdh_ant Avatar asked Sep 04 '09 02:09

vdh_ant


2 Answers

All available constructors are modeled as candidates and basically a contest is run among them.

Each parameter in a constructor represents a dependency that can be either satisfied or not. For each constructor candidate, all dependencies are analyzed.

If a dependency can be satisfied, that's two points for the candidate. If it can't be satisfied, two points are subtracted from the candidate.

The constructor candidate with the most points wins and is chosen to instantiate the component.

The code for this algorithm is here.

like image 95
Mauricio Scheffer Avatar answered Sep 21 '22 18:09

Mauricio Scheffer


Castle Windsor will use the constructor with the most parameters whose dependencies it can resolve.

When there are two constructors with the same number of parameters that Windsor can resolve, the behavior used to be seemingly arbitrary but may have been fixed.

See this post by Krzysztof Kozmic

like image 37
Maciej Avatar answered Sep 23 '22 18:09

Maciej