首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > Ruby Rails >

ruby的错误处理

2012-11-04 
ruby的异常处理Ruby的异常处理和java类似.从下面的例子大家可以看出:begin??? ?tryraise???? ?throwre

ruby的异常处理

Ruby的异常处理和java类似.从下面的例子大家可以看出:begin??? ==?tryraise???? ==?throwrescue? == catchensure? == finally

class EChartException < Exception  #sthendclass EInvalidServerException < EChartException  #sthendclass EServerDiedException < EChartException  #sthenddef chat  begin    raise EServerDiedException  rescue EInvalidServerException    puts "Invalid server"  rescue EServerDiedException    puts "Server died"    #raise  ensure    puts "ensure"  endend#run herechat
?

热点排行