interface Mythicals { static String identifyMyself() { return "I am a mythical creature."; } } public class StaticMethodTest implements Mythicals{ static String identifyMyself() { return "I am a mythical creature."; } public static void main(String[] args) { StaticMethodTest smt = new StaticMethodTest(); System.out.print(smt.identifyMyself()); } }
No comments:
Post a Comment