我正在为正在参加的课程设置程序。提供了所有代码,并且我已将所有内容配置到Eclipse中。我还必须在库-> Classpath中将plot_ly( x = ~x, y = ~y + rnorm(10)) %>%
layout(
xaxis = list(tickfont = list(size = 15)),
yaxis = list(titlefont = list(size = 25), title = "test"))
用作外部jar文件。当我运行程序时,发生关于becker.jar
的错误。
我已经尝试过将becker.jar更改为modulepath而不是classpath,但是Eclipse无法找到该文件。我还尝试过重新安装NullPointerException
,并为项目重做整个设置。
这是我要设置的代码:
becker.jar
运行时出现此错误:
import becker.robots.*;
/*
Starting Template:
This file was created in order to provide you with a pre made
'starter' program
*/
public class Starting_Template extends Object {
public static void main(String[] args) {
City toronto = new City();
Robot jo = new Robot(toronto, 3, 0, Direction.EAST, 0);
new Thing(toronto, 3, 2);
jo.move();
jo.turnLeft();
}
}