val resultRdd = houseStringsRdd.map(houseString=>{
val houseRent = HouseRent.getHouseRent(houseString)
val put = new Put(Bytes.toBytes(houseRent.HouseId))
(new ImmutableBytesWritable,put)
})
其中这一行【 (new ImmutableBytesWritable,put)】的语法怎么这么怪。
这一行是什么意思,返回吗?
这个rdd好像确实没有在其他地方设置返回值,而且这个new 都不需要加括号