Yapıcı parametre doğrulaması için en iyi yöntem nedir?
Diyelim ki basit bir C # biti:
public class MyClass
{
public MyClass(string text)
{
if (String.IsNullOrEmpty(text))
throw new ArgumentException("Text cannot be empty");
// continue with normal construction
}
}
Bir istisna atmak kabul edilebilir mi?
Karşılaştığım alternatif, başlatılmadan önce ön doğrulama yapıldı:
public class CallingClass
{
public MyClass MakeMyClass(string text)
{
if (String.IsNullOrEmpty(text))
{
MessageBox.Show("Text cannot be empty");
return null;
}
else
{
return new MyClass(text);
}
}
}