0

everyone. I met the bug shown below: enter image description here

I noticed that it just refer a map method in scala, I wonder how to solve this problem. Thank you very much~

MichaelChirico
  • 33,841
  • 14
  • 113
  • 198
Can Chen
  • 19
  • 2

1 Answers1

0

OK, I will solve my problem by myself. Actually, the reason why the stackoverflow happens is that I use the Mutable.List in my code. However, List has the maximum value of length. While the number of element you want to put into List exceeds the maximum value of List designed length, this bug occurs. So the solution is to check your code and to see whether you have used some data structure which might has its limits in length or not.

Can Chen
  • 19
  • 2