Technology / Programming / Constructor: The constructor of a class is the method that will be called when an instance of that class is created. In both c++ and processing, the constructor has the same name as the class: class circle { circle() { // do something on creation } }
Search Google for Constructor: