问题标签 [args]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ruby - ruby *args 语法错误
我发现了我想了解的这种奇怪之处。如果我在 pry 中定义这两种方法...
它们都可以工作。但是如果我将上面的代码放在一个模块中并将该模块包含在另一个类(例如 Job 类)中,则以下内容
引发以下错误...
以下工作按预期...
因此,看起来在模块内部,使用“=”定义的方法总是需要一个 arg。这对我来说没有意义。
我错过了什么
powershell - 在 powershell 中访问 $args 数组
我有一个如下所示的测试 powershell V2 脚本:
如果我从 powershell 命令提示符调用它,我会在屏幕上看到它:
不完全是我想要的。看来我必须先将 $args[0] 和 $args[1] 复制到脚本中的新变量,然后才能使用它们?如果我这样做,我可以正常访问。
有没有办法在我的代码中访问索引的 $args ?我试过以各种方式在它们周围使用花括号,但没有运气。
我最终将转向命名参数,但我正在处理的脚本(不是这个演示脚本)是批处理文件的直接端口。
python - 对必需属性(OOP)是否有“pythonic”方法?
我正在努力寻找以下班级组织的“pythonic”方法:
我有一个基类,其属性在其构造函数中初始化,例如:
然后,当我子类化时,我想“硬编码”这些属性中的一个或多个,如下所示:
因此,哺乳动物的实例化如下:
问题是,我想使用 *args 以便在更改基类定义时不理会任何派生类。因此,哺乳动物的定义变为:
哪个(不用说)看起来很可怕。一些提示将不胜感激=)
linux - Bash ARGS 帮助 - 出现随机错误
如果某个变量到位,尝试设置规则,有人可以识别我在这里缺少的 wtf 吗?
测试.sh:
输出./test.sh
:
但是,当我运行时./test.sh --cron
,它可以工作并WORKS
输出。
java - 将变量传递给另一个 JAVA 类中的主函数
在 Helloworld.java 类的 main 函数中,我创建了一个字符串或一个对象。然后,我创建了另一个类 HelloAnotherClass.java。我想将我的变量从 Helloworld main() 传递给 HelloAnotherClass.java 的主函数。
如何使用参数或其他数据结构将变量从 HelloWorld main() 发送到 HelloAnotherClass main(),然后再将其返回到 HelloWorld.java?简而言之,我想使用另一个 java 类的 main() 函数作为 HelloWorld 类中的函数。
那是我写的代码示例
c# - parse Main Args[] string from windows context menu
I used the following code to implement the right clicked file that opened by my application. My aim is to get that file's path into my program.
I use:
Then I use the variable path
, which is the file that opened by the application through the context menu.
Problem:
When the file name doesn't contain any spaces, the file path is imported without any problems. But when the file name contains any spaces, the file name shown without its extension besides it removes letters after the first space in the file name.
Example:
fileName.pdf
→fileName.pdf
fileName blah blah.pdf
→filename
The second example shown that the file that contains spaces didn't imported as it should.
So, if there is any idea of how to parse the files that contains spaces without any problems with its name.
java - 使用多个 int 数组作为参数
问题是:我有 3 个 int [] 作为 args,我需要将它们传递给与它们一起使用的函数。args[] 是:
至于来源想法:
}
输入值:
整个过程通过 FOPConverter 进行,但该部分正在工作。如果我对数组进行硬编码,那么整个事情都有效
但我需要那些作为参数。
有任何想法吗?提前致谢。
function - Clojure:如何将剩余的参数“& args”发送到列表中?
有没有(合理的)方法可以将此宏编写为函数?
给定地图向量和一些关联,宏代码将关联应用于顶部/窥视地图。
但是,当尝试将其编写为函数时,我无法弄清楚如何以~@args
合法的方式扩展它。在正常功能中,有没有办法转换,args
我相信它有形式,即没有括号?(:a 3 :bb 44 :cd 90,...)
:a 3 :bb 44 :cd 90,...
python - 使用 *args 变量在函数中传递多个变量
我是 python 新手。请看这个脚本:
如您所见,传递给函数的参数数量是三个。现在条件args==3
是True
,但该else
部分已执行。另一方面,如果if
条件为假,则执行并else
跳过该部分代码。
你能解释为什么该if
语句是在 False 条件下执行的吗?
php - 使用 cli args 调用 php 脚本的 bash 脚本
我需要编写一个包装 php 脚本的 bash 脚本,我有一些需要转发到 php 脚本的变量以及一些我在内部需要用于 bash 脚本自身的变量。
对 shell 脚本的调用应该是这样的,但是 php 文件可以有更多的参数,所以它需要是通用的:
该-php
选项是强制性的,因为它包含需要调用的 php 文件,-c
并且-l
是可选标志,需要在 bash 脚本内部使用,之后的所有内容aaa.php
都是 php 文件的参数。