源文件:testchinese.java
class chinese
{
static String country="中国";
String name;
int age;
void shout()
{
System.out.println("啊!我爱你----"+country);
}
};
class testchinese
{
public static void main()
{
System.out.println("my country is"+chinese.country);
chinese ch1=chinese();
System.out.println("我们的祖国是:"+ch1.country);
ch1.shout();
}
};
參考答案://改好的程序为:
class chinese
{
static String country="中国";//;
String name;
int age;
void shout()
{
System.out.println("啊!我爱你----"+country);
}
}
class testchinese
{
public static void main(String args[]) //
{
System.out.println("my country is"+chinese.country);
chinese ch1=new chinese(); //
System.out.println("我们的祖国是:"+ch1.country);
ch1.shout();
}
}