Recent content by genepool

  1. G

    Embarassing things you do without thinking

    I have a tendency when unwrapping something to throw the item in the trash and keep the wrapper. Fortunately it does not occur too often.
  2. G

    Collection of Lame Jokes

    I didn't either at first. Absence makes the heart grow fonder. Bit of a stretch.
  3. G

    Collection of Lame Jokes

    A chemist,an engineer and a lawyer are discussing their achievements together. The chemist says "I crossed graphite and silicone and produced a revolutionary lubricant, made millions in sales" The engineer says "I crossed titanium and aluminium to form an incredible lightweight material, made...
  4. G

    How can I override my instance variable of array type

    Hi Walnut String[] labels ={"name", "nickname", "birth"}; is hiding Parent's version of labels you can't access it from Child. What you can do is initialize it in the constructor public class Child extends Parent{ Child() { labels = new String[]{"name", "nickname", "birth"}; } }
Back
Top