I want to know if a constructor in Java returns something. I know there is no return value like '5' or "Hello World." But if we are assigning a variable to it:
People person = new People();
Then wouldn't it logically make sense for the object or ID to be returned? Is the reference in memory where the object is stored assigned to people?
I am just thinking about this now because I am learning python, and want to connect the __new__ method to a constructor and then __init__ to the body of the constructor (i.e. the initial values). My professor keeps telling me __new__ doesn't exist, so I am hoping to get an answer to make things clearer.
__new__and__init__methods are quite different from most other languages' constructors. Especially with a language like python, where there's no such thing as a return type. – Falmarri Oct 5 '11 at 22:24