一.背景 在eclipse中进行开发,尤其是在后台有项目运行的时候,当有log或者错误需要打印到console中时,控制台就会被自动弹出,恰好这时候你又在编写代码,就会感觉瞬间想杀人,下面我们就来分享如何关闭console的自动跳出. 二.解决步骤 1.打开console管理界面 windows -> preferences -> run/debug -> console 2.在右边面板去掉"Show when program writest to stan
class LoopError(Exception):pass rs = '' try: for i in range(1, 3): print i rs = 'one ' if i == 1: for j in range(12, 22): print j if j == 13: rs = 'bbs' raise LoopError except LoopError: #跳出,遇到LoopError print rs print 'good' else: #循环完毕,没抛出LoopError