Kotlin學習(二十): Kotlin實現流的讀取的方案

在Java對流的讀取是下面的那樣,當前不要忘記流的關閉close。java // java 代碼 void someFunc(InputStream in, OutputStream out) throws IOException { int read; while ((read = in.read()) != -1) { out.write(read);
相關文章
相關標籤/搜索