Is initialize method (constructor) private or public in ruby?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Let’s see:
This prints
true, soinitializeis a private method. This makes sense, it is only called by thenewclass method if the object is created. If we want, we can do something like this:Misusing the constructor like this could however lead to problems if it does more than simple variable initialization.