如何在Java中正确从apache commons导入
首先请原谅我糟糕的编程能力。
我最近下载了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
commons-math-2.2.jar
添加到类路径import org.apache.commons.math.*
(但避免星号 - 列出所有您导入的类。一个好的 IDE 应该为您提供组织导入的功能)commons-math-2.2.jar
to the classpathimport 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)