到目前为止,我知道您必须创建一个函数才能传递参数。
但是,您如何表示参数的类型?
例如,如果你想编译一个 Java 类文件,然后运行生成的 Java 文件(不必每次都键入两次文件名来区分扩展名),你如何让函数知道名称属于文件不同类型的?
假设这是我们的函数:
compileAndRun()
{
javac $1
java $2 # basically, we want to make this take the same argument
# (because the names of the *.class and *.java files are the same)
}
所以,而不是输入:
compileAndRun test.class test.java
我们只想输入这个:
compileAndRun test
任何帮助以及您想提供的任何无关信息将不胜感激。