Created
November 19, 2015 22:08
-
-
Save AnnaBoro/6ee535de1d3221f4fd56 to your computer and use it in GitHub Desktop.
+NPE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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