DANCE WITH JAVA

开发出高质量的系统

常用链接

统计

积分与排名

好友之家

最新评论

调用java的私有方法

package base;
 
import java.lang.reflect.Method;
public class PrivateTestCall {
 
 /**
  * @param args
  */
 public static void main(String[] args) {
  // TODO Auto-generated method stub
  try{
   //method one
   Method m=PrivateTest.class.getDeclaredMethod("print", new Class[]{});
   m.setAccessible(true);
   m.invoke(new PrivateTest(), new Object[]{});
   //method two
   PrivateTest privateTest=new PrivateTest();
   Method m1=privateTest.getClass().getMethod("print2", null);
   m1.setAccessible(true);
   m1.invoke(privateTest, null);
   //method three
   Method m2=PrivateTest.class.getMethod("print2", null);
   m2.setAccessible(true);
   m2.invoke(new PrivateTest(), null);
  }catch(Exception e){
   e.printStackTrace();
  }
 }
 
}

 

package base;
 
public class PrivateTest {
 private void print(){
  System.out.println("in private method");
 }
 public void print2(){
  System.out.println("in public method");
 }
}

posted on 2006-09-20 21:18 dreamstone 阅读(751) 评论(0)  编辑  收藏 所属分类: jdk相关


只有注册用户登录后才能发表评论。


网站导航: