package com.kxw.reflect; /** * Created by kangxiongwei on 2015/6/19. */ public class Person { private String name="hello"; public String getName(){ return this.name; } }