Jump to

v02-l1-methodConcept

How is named the concept used in the following code ?

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

???