静态的反义词是什么?

发布于 2024-11-14 19:56:54 字数 673 浏览 0 评论 0原文

我只是想知道静态的反义词是什么?我正在寻找一个词或术语来描述它。

例如:

#region Members

#region Static

private static Settings _Instance = null;

#endregion Static

#endregion Members

#region Properties

#region Static

/// <summary>
/// Gets the current instance of the settings class
/// </summary>
public static Settings Instance
{
    get
    {
        if (_Instance == null)
        {
            _Instance = new Settings();
        }

        return Settings._Instance;
    }
}

#endregion Static

#region Non Static?

#endregion Non Static?

#endregion Properties

如果我将代码分为静态区域和非静态区域,我应该将非静态区域称为什么?

它是非静态的吗?或者是否有一个实际的词来描述非静态的方法和属性

I was just wondering what is the opposite of static? Im looking for a word or terminology to describe it.

eg:

#region Members

#region Static

private static Settings _Instance = null;

#endregion Static

#endregion Members

#region Properties

#region Static

/// <summary>
/// Gets the current instance of the settings class
/// </summary>
public static Settings Instance
{
    get
    {
        if (_Instance == null)
        {
            _Instance = new Settings();
        }

        return Settings._Instance;
    }
}

#endregion Static

#region Non Static?

#endregion Non Static?

#endregion Properties

If Im seperating my code in to static and non-static regions what should I call my non-static region?

is it non-static? or is there an actual word to descripe methods and properties that are not static

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

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

发布评论

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

评论(2

梦幻之岛 2024-11-21 19:56:54

“实例”通常是“实例方法”、“实例变量”等。如果您发现更简单,非静态也可以。

不确定我是否真的把所有虽然这些地区...

"Instance" usually - "instance methods", "instance variables" etc. Non-static works too, if you find that simpler.

I'm not sure I'd really put all those regions in though...

往昔成烟 2024-11-21 19:56:54

非静态是正确的。 “实例”一词更常用于描述内存中对象或类的特定出现。

Non-static would be correct. The word "instance" is more commonly used to describe a particular occurrence of a object or class in memory.

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