The declared package does not match the expected package Java

Posted linux-centos

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了The declared package does not match the expected package Java相关的知识,希望对你有一定的参考价值。

 

 

 

 

 

 

 

 

 

 

 

 

今天使用vscode 编写java代码做测试时候,发现这个问题,大概总结一下。

 

目录结构

bao -> Point.java

test.java

 

package bao;

public class Point<T> {// 此处可以随便写标识符号
    private T x;
    private T y;

    public void setX(T x) {// 作为参数
        this.x = x;
    }

    public void setY(T y) {
        this.y = y;
    }

    public T getX() {// 作为返回值
        return this.x;
    }

    public T getY() {
        return this.y;
    }
};

 

import bao.Point;

public class test {
    public static void main(String[] args) {
        //IntegerPoint使用  
        Point<Integer> p = new Point<Integer>();   
        p.setX(new Integer(100)) ;   
        System.out.println(p.getX());    
  
        //FloatPoint使用  
        // Point<Float> p = new Point<Float>();   
        // p.setX(new Float(100.12f));   
        // System.out.println(p.getX());   
    }
}

 

编译报错:The declared package does not match the expected package bao Java

 

大概的原因是编译器在bao这个包名下找不到Point.java, 所以需要在vscode中把根目录加入到java的sourcepath

技术图片

 

使得编译器在寻找Point.java时,以项目根目录作为基准寻找路径,这样就编译通过了。

 

另外还有, 有的时候你在主方法里run或者debug的时候,编译器虽然能输出最后结果,但还是会报"Build failed xxxxx",我查了下官网,说是

技术图片

然后一看,原来我现在的项目路径下包含许多子项目,只要有一个子项目的文件存在语法错误,我这个项目编译时就会报“build failed”,所以以后用vscode详见项目最好还是以每个项目作为根目录来建。

以上是关于The declared package does not match the expected package Java的主要内容,如果未能解决你的问题,请参考以下文章

The declared package &quot;com.dao&quot; does not match the expected package &quot;src.c

Eclipse下关于The serializable class UsersServlet does not declare a static final serialVersionUID field

Java中的警告:The serializable class FirstApplet does not declare a static final,请问是啥错误?

Eclipse警告:The serializable class XXX does not declare a static final serialVersionUID field of type

升级后,XCode 归档时出现“The Package Does Not Contain an Info.plist”错误

已解决ERROR: pip’s dependency resolver does not currently take into account all the packages that are