Programming terms - field, member, properties (C#)

↘锁芯ラ 提交于 2019-12-20 09:16:17

问题


I was trying to find meaning of this terms but especially due to language barrier I was not able to understand what they are used for. I assume that "field" is variable (object too?) in the class while "property" is just an object that returns specific value and cannot contain methods etc. By "member" I understand any object that is declared on the class level. But these are just my assumptions based on commented code samples where some careful programmers used "property region" etc. I would really appreciate if someone could explain it to me.


回答1:


In C# :

fields : These are variables declared at the class level.

public class SomeClass
{
    private int someInteger; // This is a field
    public double someDouble; // This is another field
    protected StringBuidler stringBuidler; // Still another field
}

properties : Often used as accessors to a private field of a class, they can provide get and set methods that wrap some logic around the field manipulation.

public class SomeClass
{
    private StringBuilder stringBuilder;

    // Property declaration
    public StringBuilder StringBuilder
    {
        get 
        { 
            if(this.stringBuilder == null)
                this.stringBuilder = new StringBuidler();

            return this.stringBuilder;
        }
        set
        {
            if(this.stringBuilder == null)
                this.stringbuilder = value;
        }
    }
}

members : Includes fields, properties, methods, events of a class.




回答2:


The terminology in this area is hopelessly jumbled and varies wildly from language to language, and model to model. Do you have a specific language or platform in mind?

To a first approximation:

  1. SQL discussions often use field and column interchangeably. Field is also the standard terminology for the data members of Java and C# classes.
  2. Member is most commonly used in C++ to refer to member functions, member variables, and so on, for the various different members of a struct/class definition.



回答3:


Those terms span different languages and therefore they overlap quite a bit and the differences are more about the concrete languages than about the concept. Property and field are used to describe data in classes, members can be data and behavior (e.g. methods) in classes. However, there are differences between properties and fields in C# and Java, but that is syntactic sugar. If you were using a prototype based object oriented language (as opposed to a class-based) you would talk about slots of objects... If you want to get a grasp of the entire meaning, first choose a language.



来源:https://stackoverflow.com/questions/2720142/programming-terms-field-member-properties-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!