亚马逊是一个顶级的IaaS(Infrastructure as a Service,即基础设施即服务)供应商,这并不是什么新闻了,但IaaS市场上的另外三个玩家——微软、谷歌和IBM,正在如野草一般,迅速生长。 根据Synergy Research的一份最新报告,通过引用第二季度的营收数据,Synergy发现,IaaS市场上的另外三个巨头的云服务收入仅仅占亚马逊的总收入的63%。目前整个IaaS
运行时异常: public int divideInt(int a, int b) {int c;try {c = a / b;} catch (RuntimeException e) {System.out.println("发生RuntimeException异常");c = 0;}System.out.println("catch之后");return c;} main方法中: