摘要:
##1,新建Application类,作为程序的入口 package oop.demo02; public class Application { public static void main(String[] args) { //类,抽象的,需要实例化 Student xiaoming = ne 阅读全文
摘要:
##1、创建一个Student类 ,进行调用 package oop; //学生类; public class Student { //定义一个方法 // 非静态方法 public void say(){ System.out.println("同学们开始说话!!!"); } } ##1、创建Dem 阅读全文
摘要:
package oop; import java.io.IOException; //Demo01 类 public class Demo01 { // main 方法; public static void main(String[] args) { } /* 修饰符 返回值类型 方法名(...) 阅读全文