v02-l1-methodConcept

(50/223)

How is named the concept used in the following code ?

class MyClass {
    int x = 0;
public:
    void method(int x) {
        cout << x << endl;
    }
};

???