-2

在一个名为 Security 的类中,有一个方法:

    public static bool HasAccess(string UserId, string ModuleID)

如何调用此方法,使其返回 bool 结果?

我尝试了以下但没有成功:

    Security security = new Security();
    bool result = security.HasAccess("JKolk","Accounting");
4

4 回答 4

6
bool result = Security.HasAccess("JKolk","Accounting");

要调用静态方法,您不需要实例化正在调用它的对象。

http://msdn.microsoft.com/en-us/library/79b3xss3.aspx

请注意,您可以混合和匹配静态和非静态成员,例如:

public class Foo
{
    public static bool Bar() { return true; }
    public bool Baz() { return true; }

    public static int X = 0;
    public int Y = 1;
}

Foo f = new Foo();
f.Y = 10; // changes the instance
f.Baz(); // must instantiate to call instance method

Foo.X = 10; // Important: other consumers of Foo within the same AppDomain will see this value
Foo.Bar(); // call static methods without instantiating the type
于 2012-01-16T17:39:13.737 回答
2

您只需使用类名。无需创建实例。

Security.HasAccess( ... )
于 2012-01-16T17:39:08.293 回答
1

如果它是一个静态方法,那么调用它的方式是这样的:

bool result = Security.HasAccess("JKolk","Accounting");

你不会使用Security类的实例,你会使用Security类的定义。

于 2012-01-16T17:40:31.117 回答
0

由于它是一种静态方法,因此您应该执行以下操作。

 Security.HasAccess(("JKolk","Accounting"); 
于 2012-01-16T17:39:58.837 回答