(1)把package屏蔽掉
//package helloworld;
public class helloworld {
public static void main(String []args)
{
System.out.println("nihao");
}
}
(2)javac helloworld.java
会产生,helloworld.class
(3)运行的方式为
java helloworld
就会运行
(1)把package屏蔽掉
//package helloworld;
public class helloworld {
public static void main(String []args)
{
System.out.println("nihao");
}
}
(2)javac helloworld.java
会产生,helloworld.class
(3)运行的方式为
java helloworld
就会运行