I am trying to learn Scala, so can anyone tell me how to convert the following in scala:
for (int t = 0; true; t++)
Thank you in advance.
|
With imperative style you can write (as you do in Java):
With lazy functional this could be:
Using built-in functions:
The common use case with such infinite structures, is to take infinite stream or iterator, perform some operations on it, and then take number of results:
|
|||||||||||||
|
|
As I mentioned in the comments, your question does not seem to make much sense - please add more detail. For now, the closest Scala translation I can come up with would be:
|
|||||
|
|
You can use while or for. You can use for
or you use until when you want to increment by N number
or you better use while
or also do-while
Have a look at : http://www.simplyscala.com/ and test it out by yourself Also, in my blog I did some posts about imperative scala where I used for and while loops you can have a look there. |
||||
|
|
|
A simple for comprehension in scala looks mostly this way:
|
|||||||||||
|
tupwards, starting from zero. But you left out the body of the loop. What is your loop supposed to do? When will it stop? – Madoc May 8 '12 at 12:07