对于构造函数的声明可以有如下:
   class A
   { 
      int i;
      public A(){}
      public void A(){}//
      A(){}//
   }
   而对于 void A(){} 这样声明构造函数怎么不行呢?