what is a member vs. a property

后端 未结 9 2038
灰色年华
灰色年华 2020-12-15 03:39

A friend who is new to OO programming asked me the difference between a Member and Property, and I was ashamed to admit that I couldn\'t give him a good answer. Since proper

9条回答
  •  有刺的猬
    2020-12-15 04:13

    from PHP manual:

    Class member variables are called "properties". You may also see them referred to using other terms such as "attributes" or "fields". They are defined by using one of the keywords public, protected, or private, followed by a normal variable declaration. This declaration may include an initialization.

提交回复
热议问题