如何在Java中正确从apache commons导入

发布于 2024-11-11 09:35:12 字数 384 浏览 2 评论 0原文

首先请原谅我糟糕的编程能力。
我最近下载了 commons math 2.2,它附带了 3 个 .jar 文件: commons-math-2.2-javadoc.jar commons-math-2.2-sources.jar commons-math-2.2.jar

我想使用正态分布方法,但我不知道如何访问它们。 http://commons.apache.org/math/api-2.1/index.html

我在 mac 上使用 drJava。我需要什么导入或打包声明?我需要更改 drJava 首选项中的任何内容吗?任何见解将不胜感激。谢谢

First of all, forgive my poor programming skills.
I recently downloaded commons math 2.2, which came with 3 .jar files:
commons-math-2.2-javadoc.jar
commons-math-2.2-sources.jar
commons-math-2.2.jar

I want to use the normal distribution methods but I don't know how to get access to them. http://commons.apache.org/math/api-2.1/index.html

I'm using drJava on mac. What import or package statements do I need? Do I need to change anything in the drJava preferences? Any insight would be greatly appreciated. Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何时共饮酒 2024-11-18 09:35:12
  • commons-math-2.2.jar 添加到类路径
  • 导入您需要的任何类:import org.apache.commons.math.* (但避免星号 - 列出所有您导入的类。一个好的 IDE 应该为您提供组织导入的功能)
  • add the commons-math-2.2.jar to the classpath
  • import whichever class you need: import org.apache.commons.math.* (avoid the star though - list all the classes the you import. A good IDE should offer you to organize your imports)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文