What is the point of the portion after the single ":"? If I were to put "Person::Person(string firstname, string lastname, int arbitraryNumber)", would I need the second part?
1 2
Person::Person(string first, string last, int arbitrary)
: firstname(first), lastname(last), arbitraryNumber(arbitrary)