Can someone please disambiguate class attributes and methods for C++? I was under the impression that attribute means any member variable, and method means any member function.

Thanks

有帮助吗?

解决方案

Define "correct".

Referring to data members and member functions as "attributes/properties" and "methods", respectively, is common practice - it's the general OO wording. ("attributes" are used in C++ for something else, though, so this may very well be a source of confusion.)

The C++ standard, however, does not use these terms (apart from attributes of course, as explained above). If you don't want to risk anything and always be correct, use "data members" and "member functions".

But if you only want to explain C++ to a Java programmer, you may get away with "property" and "method" in the beginning.

其他提示

I would not do that. While it can be understood in the general context of OO, it will be confusing in C++ as attribute has a precise definition in the standard, that is not that of data member.

A class' attributes would translate to its members. A method is not the same as a member function in general. But "In object-oriented programming, a method is a subroutine (or procedure) associated with a class." - Wikipedia.

In common words, an attribute describes something, "One of the attributes of this car is that it's quite long", or "one of the attributes of the giant panda is it's striking black and white colours".

I XML, attributes are used to add extra information in a tag, e.g <species id=3212>Ailuropoda melanoleuca<common_name>Giant Panda</common_name></species> - id is an attribute, Ailuropoda melanoleuca is a value, common_name a tag within species.

But I call the variables in a class "member variables", and functions in a class "member function" or "method".

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top