私はこの問題を解明しようとしており、Scalaで読んださまざまなスタイルを試しましたが、どれもうまくいきませんでした。私のコードは次のとおりです。私のScala関数は、最後の行ではなくUnit型を返すのはなぜですか?
....
val str = "(and x y)";
def stringParse (exp: String, pos: Int, expreshHolder: ArrayBuffer[String], follow: Int)
var b = pos; //position of where in the expression String I am currently in
val temp = expreshHolder; //holder of expressions without parens
var arrayCounter = follow; //just counts to make sure an empty spot in the array is there to put in the strings
if(exp(b) == '(') {
b = b + 1;
while(exp(b) == ' '){b = b + 1} //point of this is to just skip any spaces between paren and start of expression type
if(exp(b) == 'a') {
temp(arrayCounter) = exp(b).toString;
b = b+1;
temp(arrayCounter)+exp(b).toString; b = b+1;
temp(arrayCounter) + exp(b).toString; arrayCounter+=1}
temp;
}
}
val hold: ArrayBuffer[String] = stringParse(str, 0, new ArrayBuffer[String], 0);
for(test <- hold) println(test);
私のエラーは、次のとおりです。
Driver.scala:35: error: type mismatch;
found : Unit
required: scala.collection.mutable.ArrayBuffer[String]
ho = stringParse(str, 0, ho, 0);
^one error found
私は、メソッド宣言の引数の後に等号ので、同じように追加すると:それはそれを変更
def stringParse (exp: String, pos: Int, expreshHolder: ArrayBuffer[String], follow: Int) ={....}
"どれか"。私はこの仕組みが混乱しています。何か案は?とても有難い。
+1については、newbは常に直面します。説明もややインパクトのあるものです。 – aitchnyu