Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Comments Inside Text Block in Java 17 - Is that possible?

Tags:

java

A simple question. Is it possible to have comments in Text Blocks in Java 17?

Since Java 15 Text Blocks are an option:

"""
   Hello Hello                    //how to create a comment here? - this was wanted by customer XXX
This dog has a big nose        // This line came with version 1.0.2
This cat needs to eat
"""

Is it possible to have comments inside a text block? I would like to tag some lines that came with new customers etc. Is this possible, will this be possible?

like image 447
Jack Avatar asked Feb 21 '26 07:02

Jack


1 Answers

The Java Language Specification states that:

The lexical grammar implies that comments do not occur within character literals, string literals, or text blocks

(emphasis mine)

So nope, you can't do that.

like image 86
Federico klez Culloca Avatar answered Feb 23 '26 20:02

Federico klez Culloca