gpt4 book ai didi

java - .java 文件无法使用 mac 终端常用 java 命令正确运行

转载 作者:太空宇宙 更新时间:2023-11-04 06:12:44 26 4
gpt4 key购买 nike

我正在尝试运行 this 中的程序链接(特别是 Plotter.java)。在 zip 文件中,有关于如何运行它们的说明,但它们不起作用。我已经阅读了有关从终端运行 java 文件的其他问题,并且我已经应用了这些解决方案,但没有一个对这个文件有效,尽管我运行其他代码没有任何问题( java -dir 或 javac )。我怎样才能运行这个程序?我也想在 Eclipse 控制台或 Eclipse 中制作的 GUI 中运行它(绘图仪).

p.s:我没有包含任何代码,因为该程序有大约 10 个类,而且我是 java 新手。

最佳答案

鉴于您发布的异常,问题是因为您没有为 java 提供正确的参数。该程序需要至少三个 double 参数。

他们是:

minX (the first argument)
maxX (the second argument)
frequency (the third argument).

根据 .zip 中附带的说明:绘图方程:

java PlotEq <min-x> <max-x> <sample-rate> <Expression>
Where:
min-x: is the minimum value of x to begin plotting
max-x: is the maximum value of x to plot up to.
sample-rate: how close points are plotted to eachother. A sample rate of 0.1 is generally acceptable, it means take a sample of the graph at 0.1, 0.2, 0.3, 0.4, etc. Basically determines how much detail to include in the plot
Expression: the equation to plot
example:
java PlotEq -5 5 0.01 "sin(x)"
plots sin(x) between x=-5 and 5, taking samples every 0.01 steps in x.

该问题是由于缺少 min-x、max-x 和采样率参数造成的。

关于java - .java 文件无法使用 mac 终端常用 java 命令正确运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28508994/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com