Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JavaコードをScalaに移植しようとしています:
while ((j=f('blah'))>=0) ...
エラー:「値 >= はユニットのメンバーではありません」
これは不可能ですか?
割り当て()は、Scala で (単位) を返します。しかし、コード ブロックはどこにでも配置できるので問題ありません。代わりにこれが必要です:
()
while ({ j=f("blah"); j } >= 0) ...