I am trying to learn scala and so far its been great. I'm having difficulty figuring out how to fix this error, and I tried to educate myself about foreach and return statements within them, but I still can't understand the problem, so I'm posting my problem here:
def a: Int = {
for(i <- Array(1,2,3,4,5)){
if(i == 3)
return i
}
}
The above method will not compile, I get the following error:
error: type mismatch;
found : Unit
required: Int
for(i <- Array(1,2,3,4,5)){
^
I understand what a type is, but I can't figure out how to fix this. How would I assign i to int? The expected behaviour is that the method returns 3. Would this happen, and what is wrong with my code?
returnis not normally used in Scala, and mutable data structures likeArrayare usually avoided. The idiomatic equivalent of your method (including the default from drexin's answer) would be something likedef a = 1 to 5 find (_ == 3) getOrElse 0(or alternativelyval a = 3:) ) – Luigi Plinge Apr 6 '12 at 12:55