私はこのコードを継承しましたが、元の作成者は何らかの理由で静的な読み取り専用参照を非常に気に入っていました。
以下に一般的なパターンを概説しましたが、これらの静的な読み取り専用参照を持つことにはどのような影響がありますか?
public class DbAccess
{
private static readonly ISomethingFactory = SomethingFactories.GetFactory("1");
private static IThing1Dao Thing1Dao { get {return ISomethingFactory.Thing1Dao; }}
private static IThing2Dao Thing2Dao { get {return ISomethingFactory.Thing2Dao; }}
}
public class SomethingFactories
{
public static ISomethingFactory GetFactory(string key)
{
switch(key)
{
case "...":
return new SomeFactory();
}
}
}
public class SomeFactory : ISomeFactory
{
public IThing1Dao Thing1Dao
{
get { return new Thing1Dao(); }
}
}
public class SomeService : ISomeService
{
private static readonly IThing1Dao thing1Dao = DbAccess.Thing1Dao
private static readonly IThing2Dao thing2Dao = DbAccess.Thing2Dao
public Thing1Object1 GetObject1(int id)
{
return thing1Dao.GetObject1(id);
}
public Thing1Object2 GetObject2(int id)
{
return thing1Dao.GetObject2(id);
}
}
.aspx ページでの使用法は次のようになります。
public class MyBasePage : System.Web.UI.Page
{
protected static readonly SomeService someService = new SomeService();
}
public class SomeAspxPage : MyBasePage
{
void btnAddObject1(...)
{
Thing1Object1 obj1 = someService.GetObject(1);
}
}