-
Notifications
You must be signed in to change notification settings - Fork 89
Closed
Description
object-oriented-programming/module2/presentation_static.md
Naming in the example could be less confusing (class vs object):
IS:
class ObjectA {
public:
static std::string getName() { return "ObjectA"; }
};
Should be:
class ClassA {
public:
static std::string getName() { return "ClassA"; }
};
Metadata
Metadata
Assignees
Labels
No labels