thekingisback's blog

By thekingisback, history, 2 months ago, In English

In some cases, I could write like this:

If(f==true)a++,b++;

Instead of

If(f==true){a++;b++;}

However, sometimes I can't write like that and the compiler showed errors, can anybody teach me how to use the comma properly? I think it will improve my coding speed by alot. Thanks.

Full text and comments »

  • Vote: I like it
  • +4
  • Vote: I do not like it