Answers for "doc string in java"

0

doc string in java

java has it's won function definition as similar as python's doc string
which is called "javadoc" and written before java method using /** */
/** This is doc
* string */
public void DocString() {
	// here goes function bodies
}
Posted by: Guest on June-02-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language