shell - 用命令行对javac进行编译,总是『cannot find symbol』,但是eclipse执行不会出现问题
阿神
阿神 2017-04-18 10:48:47
0
2
663

代码如下
分别是enum和testclass两个java文件

package cs121assignment1;

public enum Food {
    APPLE("fruit", 55),
    BANANA("fruit", 80),
    CARROT("vegetable", 60);
    
    private final String catagory; //vegetable or fruit
    private final int calorie;
    
    Food(String catagory, int calorie){
        this.catagory = catagory;
        this.calorie = calorie;
    }
    
    public int getCalorie(){
        return calorie;
    }
    
    public String getCatagory(){
        return catagory;
    }
}
package cs121assignment1;

public class TestFood {

public static void main(String[] args){
    System.out.println("All foods:");
    
    for(Food food : Food.values()){
        System.out.printf("%s, catagory: %s, calorie: %d kilocalorie each\n", food, food.getCatagory(), food.getCalorie());
    }
        
}

eclipse中运行结果如下:

但是用命令行执行javac的时候显示如下:

阿神
阿神

闭关修行中......

Antworte allen(2)
PHPzhong

cd Desktop;
javac cs121assignment1.TestFood;

不要
cd Desktop/cs121assignment1;

刘奇

把代码中第一行的package语句都删除
cd 到包含.java文件的文件夹
执行javac *.java
得到两个.class文件
java TestFood
即可运行成功

这个问题其实是package的用法问题
另外一种方法,不要去掉文件第一行的package
javac -d ~/Desktop/cs121assignment1 Food.java TestFood.java
会生成一个以cs121assignment1为命名的新文件夹包含Food.class 和 TestFood.class
在新生成的cs121assignment1的上层目录用java cs121assignment1.TestFood即可运行成功

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!