val words = *** //在words被定义时取值
 
lazy val words = *** //在words被首次使用时取值
 
def words = *** //在每一次words被使用时取值
 

 

相关文章: