add method

void add(
  1. int val
)

Add

Implementation

void add(int val) {
  _val = _val + val;
}