gpt4 book ai didi

java - 在 Mac 上导入包

转载 作者:行者123 更新时间:2023-12-02 07:44:58 24 4
gpt4 key购买 nike

嘿,大家遇到了这个非常简单的问题,但似乎无法弄清楚必须导入这个名为 it 的包,但我不知道将实际文件夹放在 Mac 上的哪里,不断出现错误包不存在,这是一个非常愚蠢的问题,但真的不知道该怎么办

这是代码(java):

import it.*;
import java.awt.*;

public class pyramidColour
{
public static void main (String[] args)
{
int col1 = (int)(Math.random()*255+1);
int col2 = (int)(Math.random()*255+1);
int col3 = (int)(Math.random()*255+1);

Color newCol = new Color (col1, col2, col3);

Gogga bug= new Gogga();//creating the gogga
Gogga(1,8);

for (int i = 1; i <= 4; i ++)//loop for going up
{
bug.move();
bug.turnRight();
bug.move();
bug.turnLeft();
}

bug.setDirection(bug.DOWN);

for (int i = 1; i <= 3; i ++)//loop for going down
{
bug.move();
bug.turnLeft();
bug.move();
bug.turnRight();
}

bug.move();
bug.turnRight();

for (int i = 1; i <= 7; i ++)//loop for base of pyramid
{
bug.move();
}
}
}

该项目的下一部分是将循环放入一个方法中,任何帮助将不胜感激。

最佳答案

您必须在 java 命令中包含包的类路径:

java -cp .;<path to the it classes> pyramidColour
;之前的

.代表当前目录,该目录存储pyramidColour类。

编辑:在 Mac 上,分隔符不是 ; 而是 : (感谢 Jesper)

如果您使用的是 IDE(Eclipse、Netbeans),您只需在项目属性中添加库即可。

关于java - 在 Mac 上导入包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11016070/

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