В Java мы обычно можем выполнять присвоение в рамках условия while
. Однако Котлин жалуется на это. Поэтому следующий код не компилируется:
val br = BufferedReader(InputStreamReader(
conn.inputStream))
var output: String
println("Output from Server .... \n")
while ((output = br.readLine()) != null) { // <--- error here: Assignments are not expressions, and only expressions are allowed in this context
println(output)
}
В соответствии с этим другим thread это кажется лучшим решением:
val reader = BufferedReader(reader)
var line: String? = null;
while ({ line = reader.readLine(); line }() != null) { // <--- The IDE asks me to replace this line for while(true), what the...?
System.out.println(line);
}
Но это?