gpt4 book ai didi

c# - 我应该如何为我的变量加上相同名称的前缀?

转载 作者:行者123 更新时间:2023-11-30 21:00:51 25 4
gpt4 key购买 nike

我正在创建一个 Windows Forms基于 C# 的应用程序。我的窗体的构造函数采用参数 string title,然后将该值保存到 string this.Title 属性,最后我创建了一个窗口标签 Label this.Title.

问题很明显:我的Labelstring 同名,我很好奇C# 中的命名约定。我该怎么办?

完整代码如下:

// BNForm.cs
public partial class BNForm : Form
{
public string Title;

public BNForm(string title)
{
this.Title = title;
InitControls();
}
}

// BNForm.Designer.cs
partial class BNForm
{
private Label Title;

private InitControls()
{
this.Title = new Label();
this.Title.Text = this.Title; // Trying to access the string here
this.Title.AutoSize = true;
this.Title.Location = new Point(15, 15);
this.Controls.Add(this.Title); // Trying to access the Label here
}
}

我首先调用我的标签变量 label_Title,但后来我必须添加一个新变量:Button[] Buttons 然后应该调用 buttonArray_Buttons,这对我来说听起来很愚蠢。

我应该如何命名我的变量?这种命名有规则吗?

最佳答案

不要使用前缀,因为它们被认为是不好的做法。只需使用常识。改为调用标签字段 titleLabel 怎么样? “如 jar 头上所说的那样做”……也就是说,它是明确的。

关于c# - 我应该如何为我的变量加上相同名称的前缀?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14673427/

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