class Flower { int petalCount; String s ="initial value"; Flower(String s){} Flower(int p){} Flower(); Flower(String s,int p){ this.(p); this.s = s; } }