标签: java
我在线运行Java代码,但java代码有错误。错误行是:
package binary.ga;
此行的错误信息为"the declared package "binary.ga" does not match the expected package"。有人可以帮我解决问题吗?
"the declared package "binary.ga" does not match the expected package"
答案 0 :(得分:2)
通常这意味着.java文件不在正确的文件夹中。您的文件夹结构应如下所示:
.java
binary/ ga/ MyClass.java
答案 1 :(得分:1)
您只需要用正确的包替换此行,例如我的项目结构如下所示:
所以Content类的包是net.elenx