我遇到了 java 包编译错误的问题

问题描述 投票:0回答:1

当我在命令行中编译 java 中的包声明时,出现此错误

javac -d .\java_shorts.java

.\java_shorts.java:3:错误:需要类、接口、枚举或记录 套装短裤; ^ 1 个错误

//java_shorts.java file
import java.io.Printwriter;

package shorts;
public static class java_shorts
{

public static void command_line_output(String string_input)
{
  System.out.print(string_input);

}
public static int random_number_generator_range_exclude_data_base()
{

}
public static void hello_world()
{

  command_line_output("hello_world \n\n");
}

}
//////////////////// 

/////main call file

import account_methods.account_core;
import shorts.java_shorts;



public class account_main
{
public static void main (String args[])
{
  java_shorts short_java = new java_shorts();

  short_java.hello_world();


}


}

我希望从外部文件导入一个类。

java compiler-errors package
1个回答
0
投票

包定义应位于导入定义之前。

package shorts;

import java.io.Printwriter;

© www.soinside.com 2019 - 2024. All rights reserved.