这个类声明了4个重载的构造函数:
一:Flower(int petals):有一个整形参数petals;
二:Flower(String ss):有一个字符串参数ss;
三: Flower(String s,int petals):有一个整形参数petals,有一个字符串参数ss;
四:Flower()缺省的构造函数,调用了Flower(String s,int petals),
     并用this("hi",47)缺省初始化了ss和petals。
main方法产生了一个这个类的实例x为Flower()来初始化;
然后调用print方法输出: System.out.println("petaCount = " + petalCount + " s = " + s);
当然就是:default coustructor (no args)
          petaCount = 0 s = hi