Say I have a class with a constructor as follows.
// CPP class Person { int age; void Person(int a) { age = a; } }
Is