grouparithmetic.java
来自「sample目录下是例子程序。 1.分组汇总例子 TestGroupRep」· Java 代码 · 共 32 行
JAVA
32 行
package com.lucaslee.report.grouparithmetic;
import com.lucaslee.report.ReportException;
/**
* 统计算法接口。
* <p>
* Title:
* </p>
* <p>
* Description:
* </p>
* <p>
* Copyright: Copyright (c) 2003
* </p>
* <p>
* Company:Lucas-lee Soft
* </p>
*
* @author Lucas Lee
* @version 1.0
*/
public interface GroupArithmetic {
/**
* 获得统计结果。
*
* @param values
* 要统计的数值集合。
* @return 结果
*/
public String getResult(double[] values) throws ReportException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?