我正在开发一个基于 Java EE 的 webApplication。
我有一个抽象类,我需要在其中进行一次性操作(数据库调用)。
所以在下面的示例代码中,我将它粘贴到它的构造函数中,但不知道为什么构造函数没有被调用。
请告诉我如何解决这个问题。
public abstract class Preethi {
Preethi()
{
System.out.println("hirerew");
}
public static void main(String args[])
{
int a = 12;
if(a==0)
System.out.println("a");
if (a==12)
System.out.println("12");
}
}