我正在尝试在程序中运行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();


因此,如果这是错误,请告诉我!

最佳答案

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

由于TTest属于外部库(commons-math),因此您必须下载它并告诉Java在哪里可以找到它来构建和运行程序,所以这是类路径,如果您使用的是不属于默认的标准Java类。如果您不了解Java中的类路径和外部库,则应明确地read and google about the subject

08-05 15:11