static方法和普通方法区别

package com.tiedandan.oop.demo1;

public class mainmethod {
public static void main(String[] args) {
staticmethod.staticmethod();//从mainmethod类中调用staticmethod中的静态方法:类名加方法名
//若调用的不是静态方法,则需要实例化这个类。则需要创建对象
staticmethod people= new staticmethod();
people.say();
}
}

 

 

package com.tiedandan.oop.demo1;

import java.sql.SQLOutput;

public class staticmethod {
//static是和类一起创建的,当类存在时。static方法就存在,而普通方法是在类实例化后存在的
//所以用static方法调用普通方法会出错,普通调用普通,static调用static
public static void staticmethod(){
System.out.println("hello");
}
public void say(){
System.out.println("saygoodbye");
}
}

posted on 2021-11-11 21:07  张铁蛋666  阅读(358)  评论(0编辑  收藏  举报

导航