what are attributes in any class

Recommended Answers

All 2 Replies

They are the member variables. For example :

class Person{
private:
 //attributes
 int health;
 int power;
public:
 Person(){ ... };
}

So a health and strength is an attribute of a person.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.