gpt4 book ai didi

C# this.everything?

转载 作者:行者123 更新时间:2023-11-30 13:25:07 26 4
gpt4 key购买 nike

我决定在引用字符串/整数等字段时使用 this.variableName。那也会包括 ArrayList、ListBox 等吗?喜欢:

private ListBox usersListBox;
private void PopulateListBox()
{
this.usersListBox.Items.Add(...);
}

……还是不行?

那么类呢?

MyClass myClass;
private void PlayWithMyClass()
{
this.myClass = new MyClass();
this.myClass.Name = "Bob";
}

?这对我来说有点奇怪。而且我不知道我应该使用 this.PublicProperty 还是只使用私有(private)字段。

我不是 100% 了解 C# 术语,但希望我所说的是有道理的。

最佳答案

我过去常常做那种事情,但现在我发现 IDE 非常聪明,可以给我一个视觉指示,表明我正在处理一个成员变量。我只在需要区分成员变量和同名参数时才使用“this”。

关于C# this.everything?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1113802/

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