Jump to content
  • 0

Question

Posted

I would like to know if I would change anything by
  >>

 

if (st.getInt("cond") < 6)
            {
                st.set("cond", "6");
            }

 

being thus

 

if (st.getInt("cond") < 6)
      st.set("cond", "6");
          

3 answers to this question

Recommended Posts

  • 0
Posted

The "{ }" allows you to add more commands on a if block. If you got a one liner condition result, it's shorter to write it without it (which is the common writting style when I code something).

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock