0

我正在尝试在我的程序中运行 TTest 并导入导入它所需的类不起作用。

这是我听说过的课程 http://commons.apache.org/proper/commons-math/apidocs/index.html?org/apache/commons/math3/stat/inference/TTest.html

我试过了:

import java.lang.Object.org.apache.commons.math3.stat.inference.TTest;

import org.apache.commons.math3.stat.inference.TTest;

以及一些不起作用的组合。

如果你知道怎么做,请告诉我!

在里面我正在使用

TTest test = new TTest();  

所以如果这是错误,请告诉我!

4

1 回答 1

1

import org.apache.commons.math3.stat.inference.TTest;是从commons-math导入TTest类的正确方法。

由于属于TTest外部库(commons-math标准的 Java 类。如果您不了解 Java 中的类路径和外部库,那么您应该明确阅读并在Google上搜索该主题

于 2013-07-21T20:29:51.157 回答