class StaticDemo
{
public static void main(String[] args)
{
Person.show();
}
}
class Person
{
String name;//成員變量
static String country = "CN";
public static void show()
{
System.out.println(country+":");
}
}
//報錯:在類Person中找不到主方法,請將主方法定義為
// public static void main(String[] args)
求大神指導.
我知道了,我錯將class Person 包含到class StaticDemo 中了。