Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java

Isam Al-Abbasi
Isam Al-Abbasi
2,058 Points

Does it matter where to write methods into the class?

Hello everyone, I was wondering if choosing the right place to write a method into the class matters? i.e can I right before or after the constructor or at the very end or very beginning etc..?? Thank you.

2 Answers

anil rahman
anil rahman
7,786 Points

pretty sure placement of your method does not matter as long as it's within the class. Usually people will have member fields at the top, constructor next, then other methods below.