类方法:就是指随着这个类的产生就拥有的方法;主函数也是类方法
调用方式:类名.方法名;
实例方法:是指必须对该类创建对象后才能加载的方法;
调用方式:对象名.方法名- package cn.itcast.Test;
- public class Test {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Demo.normalMethod();//类方法调用;
-
- Demo demo=new Demo();
- demo.objectMethod();//对象方法调用
- }
- }
- class Demo{
- public static void normalMethod(){
- System.out.println("normalMethod!");
- }
- public void objectMethod(){
- System.out.println("objectMethod!!");
- }
- }
复制代码 |