代码中的下划线_是什么意思呢?在编程界中,下划线_xx常常表⽰私有的意思,就像下⽅的代码
/**
* List of lifecycle hooks.
*/
_lifecycleHooks:[
'init',
'created',
'beforeMount',
'mounted',
'beforeUpdate',
'updated',
'beforeDestroy',
'destroyed',
'activated',
'deactivated'
],
/**
* Max circular updates allowed in a scheduler flush cycle.
*/
update是什么_maxUpdateCount:100,
/**
* Server rendering?
*/
_isServer: v.VUE_ENV==='server',
_lifecycleHooks,_maxUpdateCount,_isServer都是私有的。
在python中,也是如此。
也可能它只是⼀个变量名
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论