How to write multi-line comments in Java

In Java, multi-line comments are enclosed with /* and */. Here is an example of a multi-line comment:

/*
这是一个多行注释的示例。
多行注释可以跨越多行。
在这里可以添加详细的注释说明。
*/

Note: Nested multi-line comments are not allowed, meaning another multi-line comment block cannot be included within one multi-line comment block.

bannerAds