たとえば、にある eclipse プロジェクトがあるとしD:\DanHenderson\scala\MyProject
ます。MyProject には、 と の 2 つのディレクトリがsrc
ありbin
ます。src
I have scala code自体では、それはいくつかのクラスまたはアプリケーションである可能性があります。では、これらのクラスを使用したり、コマンドラインからアプリケーション全体を実行するにはどうすればよいでしょうか? つまり、 class のファイルがあり、コマンドラインに入力A
できるようにしたいのです。val a = new A
これどうやってするの?
質問する
68 次
1 に答える
1
By command line I assume you mean the Scala REPL. Add the directory of your class files to the classpath when starting the Scala REPL:
scala -classpath "path to some dir where your .class files reside"
Note that if your project relies on some libraries then those need to be on the classpath as well.
于 2012-08-12T21:59:28.387 に答える