Java中的实例方法
作者:互联网
实例方法在栈中压栈,只要是方法,都在栈中压栈
//带有static,没有static方法分别怎么调用
//带有static的方法怎么调用
//通过<类名.方法名>的方式访问
//对象被称为实例
//实例相关的有:实例变量、实例方法
//实例变量是对象变量,实例方法是对象方法
//实例相关的都需要先使用new运算符创建对象
//通过"引用."的方法去访问
public class MethodTest{
public static void main(String[] args){
MethodTest.doSome();
//在同一个类中,前面的类名可以省略
doSome();
//尝试使用"类名."的方法范围跟实例方法
// MethodTest.doOther();//错误:无法从静态上下文中引用非静态方法
//创建对象
MethodTest mt = new MethodTest();
//通过“引用.”的方式去访问实例方法
mt.doOther();
}
//带有static
public static void doSome(){
System.out.println("Do some!!");
}
//这个方法没有static
//这个方法被称为实例方法(对象级别的方法)
public void doOther(){
System.out.println("do other");
}
}
#本文参考动力节点Java零基础教程,已获得原作者许可
#视频链接https://www.bilibili.com/video/BV1Rx411876f
标签:Java,实例,static,MethodTest,doOther,方法,public 来源: https://blog.csdn.net/Bluur/article/details/111400210