コマンドライン引数

意外とすぐ忘れるのでメモ

#include <iostream>
int main( int numArguments, char const* arguments[])
{
	for( int index = 0; index < numArguments; ++index)
	{
		std::cout << arguments[index] << std::endl;
	}
	return 0;
}
// 実行例
$ test.exe abc def 123 456
test.exe
abc
def
123
456

c# は2パターン。普通は上のパターンを使ってる。自分の名前も知りたい場合は下のパターンですかね?

class Program
{
	static void Main( string[] arguments)
	{
		foreach( var param in arguments)
		{
			System.Console.WriteLine( param);
		}
	}
}
// 実行例
$ test.exe abc def 123 456
abc
def
123
456

class Program
{
	static void Main()
	{
		string[] arguments = System.Environment.GetCommandLineArgs();
		foreach( var param in arguments)
		{
			System.Console.WriteLine( param);
		}
	}
}
// 実行例
$ test.exe abc def 123 456
test.exe
abc
def
123
456

golang は2パターン。普通は flag を使うのかな?Parse() で翻訳できるので。

package main
import (
	"flag"
    "fmt"
)
func main(){
	flag.Parse()
	arguments := flag.Args()
	for _,param := range arguments {
		fmt.Println( param)
	}
}
// 実行例
$ test.exe abc def 123 456
abc
def
123
456

package main
import (
    "fmt"
	"os"
)
func main(){
	arguments := os.Args
	for _,param := range arguments {
		fmt.Println( param)
	}
}
// 実行例
$ test.exe abc def 123 456
test.exe
abc
def
123
456
One Comment

Add a Comment

メールアドレスが公開されることはありません。 が付いている欄は必須項目です