**NewCharacter.java**
package com.jalor.others;
public interface NewCharacter {
public void test1();
public default void test2() {
System.out.println("我是JDK1.8的新特性!");
}
}
**NewCharacterImpl.java**
package com.jalor.others;
public class NewCharacterImpl implements NewCharacter {
@Override
public void test1() {
// TODO Auto-generated method stub
}
public static void main(String[] args) {
NewCharacterImpl nca = new NewCharacterImpl();
nca.test2();
}
}