码迷,mamicode.com
首页 > 其他好文 > 详细

scala模拟一个timer

时间:2016-12-22 11:46:29      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:pack   dem   code   函数调用   模拟   util   while   cond   new   

直接上代码:

package com.test.scalaw.test.demo

import java.util.Date

/**
 * 模拟一个定时timer
 */
object Timer {
  
  def periodicCall(s : Integer,callback:()=>Unit):Unit={
    while(true){
      callback()
      Thread.sleep(s*1000)
    }
  }
  
  def main(args: Array[String]): Unit = {
    //采用匿名函数调用
    periodicCall(2, ()=>println("hello,world"+new Date().getSeconds))
    
  }
  
}

 

scala模拟一个timer

标签:pack   dem   code   函数调用   模拟   util   while   cond   new   

原文地址:http://www.cnblogs.com/huzi007/p/6210149.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!