operator.java
来自「提供ESB 应用mule源代码 提供ESB 应用mule源代码」· Java 代码 · 共 65 行
JAVA
65 行
/* * $Id: Operator.java 8077 2007-08-27 20:15:25Z aperepel $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.util.counters.impl;import org.mule.util.counters.Counter;import org.mule.util.counters.CounterFactory.Type;public class Operator extends AggregateCounter{ private final Counter base2; private double val1; private double val2; public Operator(String name, AbstractCounter base, AbstractCounter base2, Type type) { super(name, type, base); this.base2 = base2; base2.addAggregate(this); } public double nextValue() { Type type = this.getType(); if (type == Type.PLUS) { return val1 + val2; } else if (type == Type.MINUS) { return val1 - val2; } else if (type == Type.MULTIPLY) { return val1 * val2; } else if (type == Type.DIVIDE) { return val2 == 0.0 ? (val1 >= 0 ? Double.POSITIVE_INFINITY : Double.NEGATIVE_INFINITY) : (val1 / val2); } else { throw new IllegalStateException(); } } public void doCompute() { this.val1 = this.getBase().nextValue(); this.val2 = base2.nextValue(); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?