// 代码修改如下:
// 既然是抽象类,那么就不可以实体化的。
// 在抽象类中至少要有一个方法为未定义方法。
// 要用到抽象类,就要有另外一个类继承于这个抽象类,在那个继承类中来具体定义那个
// 在抽象类中未定义的方法。
abstract class class1
{
public abstract void mat(String a);
}
class class2 extends class1
{
static String str="";
//private static boolean headless;
public void mat(String a)
{
str = a;
System.out.println(str);
}
public static void main(String args[])
{
try
{
class2 a = new class2();
System.out.println(a.toString());
a.mat("aaa");
class2 b = new class2();
b.mat("bbb");
class2 c= new class2();
c.mat("ccc");
System.out.println(a.str);
}
catch(Exception e)
{
System.out.println(e.toString());
}
}
}
// 既然是抽象类,那么就不可以实体化的。
// 在抽象类中至少要有一个方法为未定义方法。
// 要用到抽象类,就要有另外一个类继承于这个抽象类,在那个继承类中来具体定义那个
// 在抽象类中未定义的方法。
abstract class class1
{
public abstract void mat(String a);
}
class class2 extends class1
{
static String str="";
//private static boolean headless;
public void mat(String a)
{
str = a;
System.out.println(str);
}
public static void main(String args[])
{
try
{
class2 a = new class2();
System.out.println(a.toString());
a.mat("aaa");
class2 b = new class2();
b.mat("bbb");
class2 c= new class2();
c.mat("ccc");
System.out.println(a.str);
}
catch(Exception e)
{
System.out.println(e.toString());
}
}
}
自由,民主,平等,博爱,进步.
中华民国,我的祖国,中华民国万岁!中华民国加油!
本人自愿加入中国国民党,为人的自由性,独立性和平等性而奋斗!