手记

20161020方法包即工具类的编辑和调用即开源

package cat;

public class cat {

public void print() {
    System.out.println("Hello World");
}

public static void main(String[] args)
{
    //在 main 方法中调用 print 方法
    cat test=new cat();
    test.print();
}

}

0人推荐
随时随地看视频
慕课网APP