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 Java Basics Perfecting the Prototype Parsing Integers

What're the rules around where you put your curly braces?

Hi there!

Just a quick one from the previous lesson...

Is it necessary to put a closing curly brace on a new line? Why is it not added at the end of the last line of code, like normal braces?

if (age<13) { //Insert exit code console.printf("Sorry you must be at least 13 to use this program. \n"); System.exit(0); }

Thanks,

Michael

1 Answer

Kourosh Raeen
Kourosh Raeen
23,733 Points

Hi Michael - Take a look at the Google Java Style Guide regarding braces:

https://google.github.io/styleguide/javaguide.html#s4.1-braces

Thanks! Much appreciated.