Estoy tratando de resolver el problema, y probé diferentes estilos que he leído en Scala, pero ninguno de ellos funciona. Mi código es:¿Por qué mi función Scala vuelve al tipo Unidad y no a la última línea?
....
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);
Mi error es:
Driver.scala:35: error: type mismatch;
found : Unit
required: scala.collection.mutable.ArrayBuffer[String]
ho = stringParse(str, 0, ho, 0);
^one error found
Cuando agrego un signo igual después de los argumentos en la declaración del método, así:
def stringParse (exp: String, pos: Int, expreshHolder: ArrayBuffer[String], follow: Int) ={....}
Cambia a "Alguna". Estoy confundido sobre cómo funciona esto. ¿Algunas ideas? Muy apreciado.
+1 por algo que un newb siempre enfrentará. La explicación también es un poco contraintuitiva también. – aitchnyu