如何在 C# 上运行时执行一次方法

发布于 2024-11-04 08:54:54 字数 61 浏览 4 评论 0原文

是否有可能在不使用外部属性的情况下在实例运行时多次阻止方法执行?

我希望我说清楚了! 最好的

Is there a possibility to prevent method execution more than once during Run-time of an Instance without using an external Attribute ?

I hope i was clear !
Bests

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

尬尬 2024-11-11 08:54:54
public class TestClass
{
static private bool _isExecutedFirst = false;

public void MethodABC()
{
if(!_isExecutedFirst)
_isExecutedFirst = true;
else
throw Exception("Method executed before");
/////your code

} 
}

希望这有帮助

public class TestClass
{
static private bool _isExecutedFirst = false;

public void MethodABC()
{
if(!_isExecutedFirst)
_isExecutedFirst = true;
else
throw Exception("Method executed before");
/////your code

} 
}

Hope this help

初熏 2024-11-11 08:54:54

当然,有一个标志来指示实例上的方法是否已运行。

public class RunOnceMethod
{
  private bool haveIRunMyMethod = false

  public void ICanOnlyRunOnce()
  {
    if(haveIRunMyMethod)
      throw new InvalidOperationException("ICanOnlyRunOnce can only run once");

    // do something interesting

    this.haveIRunMyMethod = true;
  }
}

sure, with a flag to indicate whether a method on an instance has been run.

public class RunOnceMethod
{
  private bool haveIRunMyMethod = false

  public void ICanOnlyRunOnce()
  {
    if(haveIRunMyMethod)
      throw new InvalidOperationException("ICanOnlyRunOnce can only run once");

    // do something interesting

    this.haveIRunMyMethod = true;
  }
}
羁拥 2024-11-11 08:54:54

是的,
你可以这样使用,

void method(args)
{
    static int a;
    if(a != 0)
    {
        return;
    }
    // body of method and 
    a++;
}

因为这个静态 a 不会被复制到函数调用的激活记录中,并且所有函数都只会共享一个 a。

我希望这能解决您的问题。

Yes,
you can use like this

void method(args)
{
    static int a;
    if(a != 0)
    {
        return;
    }
    // body of method and 
    a++;
}

reason being this static a will not be copied to activation records of the function calls and all will share only one a.

I hope this resolve your question.

千と千尋 2024-11-11 08:54:54

不,如果不存储某种表明该方法已经执行的“状态”,就无法阻止方法执行。

一种方法是在开始时进行“防护”/检查:

private bool AExecuted = false;
public void A()
{
    if (AExecuted)
       return;
    else
       AExecuted = true;

    /* Your code */
}

No, there is no way to prevent method execution without storing some kind of 'state' saying the method has already been executed.

One way of doing this is a "guard" / check at start:

private bool AExecuted = false;
public void A()
{
    if (AExecuted)
       return;
    else
       AExecuted = true;

    /* Your code */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文