What does this mean? I see this all the time in comments, in flash actionscript
What 开发者_高级运维does this mean?
/**
* ...
* @author ...
*/
and now do i use it?
thanks! (tried google-ing first, but wildcards are throwing it off)
They are Javadocs comments, a format to write code comments that started with Java, and is some other languages picked the syntax.
There are parsers available that will read your code files and generate HTML output from them, to easily document an API.
精彩评论