请告诉我以下两个课程之间有什么区别
public static class Product
{
public static int AddData(int x, int y)
{
return x + y;
}
}
public class Product
{
public static int AddData(int x, int y)
{
return x + y;
}
}
因为我们能够在两个类中以相同的方式访问AddData方法。
答案 0 :(得分:0)
在静态类中,您只能添加静态方法。
您无法创建该静态类的实例,即无法将其分配给变量
此外,静态类中对静态方法的访问速度比实例一快。
静态类也不能被继承(因为它们不能有实例而没有意义)