码迷,mamicode.com
首页 > 其他好文 > 详细

转:静态方法中调用非静态方法

时间:2018-08-01 12:09:26      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:调用   tran   ann   静态方法   method   函数   eth   string   print   

我们都知道,静态static方法中不能调用非静态non-static方法,准确地说是不能直接调用non-static方法。但是可以通过将一个对象的引用传入static方法中,再去调用该对象的non-static方法。
      其实这个事实的应用很经常,以至于我们不去重视:在主函数(static方法)中我们经常创建某个类的实例,再利用其饮用变量调用它的非静态方法。
 
//StaticMethodTest.java
//A ststic method cannot call a non-static method, but we can transfer a object reference, which include a non-static metho to the static method, thus, wo can call that non-static method in a indirect way.

public class StaticMethodTest{
    void NonStaticMethod(){
        System.out.println("This is a non-sataic method.");
    }
    
   static void StaticMethod(StaticMethodTest s){
       System.out.println("This is a static method.");
       s.NonStaticMethod();
    }
 
    public static void main(String[] args) {
        StaticMethodTest sObj=new StaticMethodTest();
        StaticMethod(sObj);  //在主函数中可以直接调用静态方法
    }
}

转:静态方法中调用非静态方法

标签:调用   tran   ann   静态方法   method   函数   eth   string   print   

原文地址:https://www.cnblogs.com/2018shawn/p/9399302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!