public int SolveCareless() { try { Perceive(); Accuracy(); Punishment(); FocusingAttention(); Check(); } catch(Exception ex) { string strMsg= AlertErrorMsg(); throw new Exception(strMsg+ex.Message+"对不起,未知错误!"); } finally { Check(); } } void Perceive() { 粗心是一种错误 } void Accuracy() { 准确第一 } void Punishment() { 惩罚 } void FocusingAttention() { 集中注意力 } void Check() { 一定要检查 } string AlertErrorMsg(); { string strMsg=@" 你是错的! 总是差那么一点! 能不能省点心啊! 能不能一遍就OK啊! 是不是没问题了啊? 你确定吗? 你是猪啊? 。。。。省略多种不行的意思"; }
时间: 2024-10-09 23:19:10