package com.test; interface product{ int getPrice(); } public class News { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub //直接實例化接口,並實現接口的方法 int pricene=new product(){ public int getPrice(){ return 100; } }.getPrice(); System.out.println(pricene); } }
參考 http://blog.csdn.net/zhengguanxiong/article/details/52517127