Node.js:process.argv 与 process.ARGV

发布于 2024-11-04 03:53:09 字数 133 浏览 0 评论 0原文

我注意到 Node 定义了 process.argv 和 process.ARGV (大写)。后者在文档中没有提及,并且在我迄今为止遇到的每种情况下都是同一个对象。

ARGV 只是历史遗留问题,还是有其目的?

I notice that Node defines both process.argv and process.ARGV (capitalized). The later isn't mentioned in the documentation and is, in every case I've encountered so far, the same object.

Is ARGV just a historic holdover, or does it have a purpose?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乙白 2024-11-11 03:53:09

process.ARGVv0 以来已完全删除 .5.10

process.ARGV has been removed entirely since v0.5.10.

鹤仙姿 2024-11-11 03:53:09

它们是相同的:

node.cc

// process.argv
Local<Array> arguments = Array::New(argc - option_end_index + 1);
arguments->Set(Integer::New(0), String::New(argv[0]));
for (j = 1, i = option_end_index; i < argc; j++, i++) {
  Local<String> arg = String::New(argv[i]);
  arguments->Set(Integer::New(j), arg);
}
// assign it
process->Set(String::NewSymbol("ARGV"), arguments);
process->Set(String::NewSymbol("argv"), arguments);

编辑(基于进一步的问题):

只有一个人可以肯定地告诉你这一点(作者) - 你也许能够在 IRC (irc.freenode.net #node.js) 上找到他。

查看其他符号,我猜测它是为了一致性而添加的 - argvenv 似乎是唯一同时具有小写和大写版本的两个符号。但是,ENVenv略有不同。也许作者认为 argvARGV 可能与 envENV 的差异相同?

They are identical:

node.cc

// process.argv
Local<Array> arguments = Array::New(argc - option_end_index + 1);
arguments->Set(Integer::New(0), String::New(argv[0]));
for (j = 1, i = option_end_index; i < argc; j++, i++) {
  Local<String> arg = String::New(argv[i]);
  arguments->Set(Integer::New(j), arg);
}
// assign it
process->Set(String::NewSymbol("ARGV"), arguments);
process->Set(String::NewSymbol("argv"), arguments);

Edit (based on further question):

There's only one person who can tell you that for sure (the author) - you might be able to find him on IRC (irc.freenode.net #node.js).

Looking through the other symbols, I'd guess that it was added for consistency - argv and env seem to be the only two that have both lower and upper case versions. However, ENV differs slightly from env. Maybe the author thought that argv and ARGV might differ in the same manner as env and ENV?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文