This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package example | |
import com.google.common.io.Files | |
import java.io.File | |
import java.nio.charset.Charset | |
class CsvCalculator { | |
def static void main(String[] args) { | |
val total = new CsvCalculator().calculate('file.csv') | |
println(total) | |
} | |
def calculate(String file) { | |
readLines(file).map[s| s.toRecord].reduce[base, r| base + r] | |
} | |
def private readLines(String file) { | |
Files::readLines(new File(file), Charset::forName('utf-8')) | |
} | |
def private toRecord(String line) { | |
val ss = line.split(',') | |
new Record(Integer::valueOf(ss.get(0)), Long::valueOf(ss.get(1))) | |
} | |
} | |
@Data class Record { | |
int count | |
long volume | |
def operator_plus(Record r) { | |
new Record(count + r.count, volume + r.volume) | |
} | |
} |
以下がポイントでしょうか。
- 行コレクションに対する map/reduce を、クロージャで書いている
- 行からRecordオブジェクトへの変換を、Extension methodで書いている
- Recordの足し込みを、"+"演算子オーバロードで書いている
ありきたりの内容ですが、Javaプログラマ向けの最初の練習問題としては、まぁまぁかな?