在C#中,当我想从该类的另一个静态方法调用类的静态方法时,是否有我可以使用的泛型前缀,例如PHP self::
而不是班级名称?
因此,在下面的示例中,我怎么说 Customer.DatabaseConnectionExists()
,而不是说 Self.DatabaseConnectionExists()
。以后如果我更改了类的名称,我不必更改所有前缀?
class Customer
{
public string FirstName { get; set; }
public string LastName { get; set; }
public static Customer GetCurrentCustomer()
{
if (Customer.DatabaseConnectionExists())
{
return new Customer { FirstName = "Jim", LastName = "Smith" };
}
else
{
throw new Exception("Database connection does not exist.");
}
}
public static bool DatabaseConnectionExists()
{
return true;
}
}
答案 0 :(得分:15)
没有真正的等价物 - 您必须指定类名,即
Customer.DatabaseConnectionExists()
或完全错过限定词,即
DatabaseConnectionExists()
后一种调用方式是可取的,因为它更简单并且不会失去任何意义。此外,它更适用于实例中的方法调用(即InstanceMethod()
和不是 this.InstanceMethod()
调用,这过于冗长)。
答案 1 :(得分:13)
如果你从类中调用方法,你不需要像:: Self那样指定任何东西,只需要方法名称即可。
class Customer
{
public string FirstName { get; set; }
public string LastName { get; set; }
public static Customer GetCurrentCustomer()
{
if (DatabaseConnectionExists())
{
return new Customer { FirstName = "Jim", LastName = "Smith" };
}
else
{
throw new Exception("Database connection does not exist.");
}
}
public static bool DatabaseConnectionExists()
{
return true;
}
}
答案 2 :(得分:4)
请不要理会。 DatabaseConnectionExists
在类中定义。
答案 3 :(得分:2)
只需在没有任何前缀的情况下调用它。
答案 4 :(得分:0)
不,没有。但是使用重构工具,更改类的名称不应该太担心。