try catch statement

R

Roedy Green

To text/discussion groups specifically. Binaries groups certainly
permit binaries. Of course nowhere is HTML or Quoted-Printable
welcome. :)

That's why perhaps HTML-based forums are taking over from newsgroups.
Many times I wished I could use HTML or a image to explain something
in Java. On my website, I have the freedom to use both.
 
W

Wojtek

Roedy Green wrote :
The odd formatting was just to make it more compact. In my actual
code, IntelliJ reformat is in complete control of the layout. It
would look more like this:

final int x;
if ( a > 0 )
{
x =14;
}
else if ( a < 0 )
{
x = 0;
}
else
{
x = 7;
}

Or you could do this:

final int x = ( a > 0 ) ? 14 : ( a < 0 ) ? 0 : 7;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top