CIT Forum Index

Support => General Support / Questions => Resolved Questions => Topic started by: BigBear. on 30 10, 2022, 07:21:21 pm

Title: java code block
Post by: BigBear. on 30 10, 2022, 07:21:21 pm
what bracket is for annoted (tagged) java code on this forum? It's like the (code) bracket but with enumerated lines
Title: Re: java code block
Post by: BigBear. on 30 10, 2022, 07:30:05 pm
just like the one in this link https://cit.gg/index.php?topic=287063.msg4343759#msg4343759
Title: Re: java code block
Post by: IDriver on 04 11, 2022, 09:20:16 am
Here is a notation rule used in Java code: a bracket should either start/end a line or be paired on the same line.

The notation applies universally to any programming language (incl. Java, Ruby, Python, C++, PHP, etc.) where brackets are used for method/function calls.

Here is how your code will look, if you follow this “Paired Brackets” notation:

new Foo( // ends the line
  Math.max(10, 40), // open/close at the same line
  String.format(
    "hello, %s",
    new Name(
      Arrays.asList(
        "Jeff",
        "Lebowski"
      )
    )
  ) // starts the line
);
Obviously, the line with a closing bracket should start at the same indentation level as the line with its opening pair.

Title: Re: java code block
Post by: M3dusa on 12 11, 2022, 01:58:54 pm
@BigBear. is this resolved?