gpt4 book ai didi

javascript - 变量前的双下划线

转载 作者:搜寻专家 更新时间:2023-10-31 23:54:51 25 4
gpt4 key购买 nike

我的 Node 代码中有以下代码片段。

var fs = require('fs');

fs.readdir(__dirname, function (err, files) {
console.log(files);
});

为什么变量'__dirname'有双下划线?我知道一个下划线是私有(private)/ protected 变量的命名约定......但是双下划线是否意味着更多?

最佳答案

__dirname__filename 对于每个模块都是本地的,但具有字符串的特殊性。

http://nodejs.org/docs/latest/api/globals.html

文档指定:

__dirname isn't actually a global but rather local to each module.

通常下划线表示私有(private)(In Javascript, what does this underscore mean?)

它可以解释为模块的局部私有(private)变量。

关于javascript - 变量前的双下划线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23884265/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com