gpt4 book ai didi

c# - 属性与方法

转载 作者:太空宇宙 更新时间:2023-11-03 15:08:06 25 4
gpt4 key购买 nike

小问题:您什么时候决定使用属性(在 C# 中)以及什么时候决定使用方法?

我们正忙于进行这场辩论,并发现在某些领域,我们是否应该使用属性或方法存在争议。一个例子是这样的:

public void SetLabel(string text)
{
Label.Text = text;
}

在示例中,Label 是 ASPX 页面上的一个控件。是否有一个原则可以决定(在这种情况下)是将其作为方法还是属性。

我会接受最笼统和最全面的答案,但也涉及到我给出的示例。

最佳答案

来自Choosing Between Properties and Methods开发类库的设计指南部分:

In general, methods represent actions and properties represent data. Properties are meant to be used like fields, meaning that properties should not be computationally complex or produce side effects. When it does not violate the following guidelines, consider using a property, rather than a method, because less experienced developers find properties easier to use.

关于c# - 属性与方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42459311/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com