Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/372.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
@符号在javascript中有什么意义吗?_Javascript - Fatal编程技术网

@符号在javascript中有什么意义吗?

@符号在javascript中有什么意义吗?,javascript,Javascript,我注意到许多javascript文件中提到的@符号,无法理解这个字符的意义。例如: /** * Calls the specified callback function for all the elements in an array. The return value of * the callback function is the accumulated result, and is provided as an argument in the next * ca

我注意到许多javascript文件中提到的@符号,无法理解这个字符的意义。例如:

/**
    * Calls the specified callback function for all the elements in an array. The return value of
    * the callback function is the accumulated result, and is provided as an argument in the next
    * call to the callback function.
    * @param callbackfn A function that accepts up to four arguments. The reduce method calls the
    * callbackfn function one time for each element in the array.
    * @param initialValue If initialValue is specified, it is used as the initial value to start
    * the accumulation. The first call to the callbackfn function provides this value as an argument
    * instead of an array value.
*/
那么,@param在这里有什么意义吗

备注-以上是对以callbackfn和initialValue为参数的函数的描述。

仅用于文档编制

@param在这里表示函数将采用哪个param作为示例。
还有一些,如@author等。

这只是为了文档目的

@param在这里表示函数将采用哪个param作为示例。 几乎没有更多的了,比如@author,等等。

这是一条评论。
@param callbackfn
表示“下面是参数
callbackfn
的描述”

您的IDE可能能够解析该格式,也可以从中生成文档。

该注释是正确的。
@param callbackfn
表示“下面是参数
callbackfn
的描述”


您的IDE可能能够解析该格式,也可以从中生成文档。

这是一个javadoc风格的注释。查看javadoc文档,它是javadoc风格的注释。查看javadoc文档

@param标记指定函数或方法中参数的信息


链接:

@param标记指定函数或方法中参数的信息


链接:

这是为了生成文档-查看可能重复的示例:这是为了生成文档-查看可能重复的示例:有没有办法在定义类型脚本文件中解析此JSDoc?有没有办法在定义类型脚本文件中解析此JSDoc?