Can someone tell me what a constructer and an overloaded constructer are?
This is a discussion on What are constructers and overloaded constructers? within the C++ Programming forums, part of the General Programming Boards category; Can someone tell me what a constructer and an overloaded constructer are?...
Can someone tell me what a constructer and an overloaded constructer are?
Read the 2nd Reply
As for overloaded constructors: An overloaded function (in this case a constructor) is when you make multiple functions with the same name but which take different arguments. With constructors, this allows you to construct your objects in literally an infinite amount of ways (or until you get tired of typing... whichever comes first)