Skip to content

Instantly share code, notes, and snippets.

@AnnaBoro
Created November 19, 2015 22:08
Show Gist options
  • Save AnnaBoro/6ee535de1d3221f4fd56 to your computer and use it in GitHub Desktop.
Save AnnaBoro/6ee535de1d3221f4fd56 to your computer and use it in GitHub Desktop.
+NPE
package lesson6.constructor;
public class GlyphChild extends Glyph {
String d = "j";
public GlyphChild() {
}
@Override
public void draw() {
System.out.println("Glyph//Draw");
System.out.println("GlyphChild-d "+ d.toString());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment