摘要: 类与对象的创建 package com.zishi.oop.demo02;​public class Student {​ //属性:字段 String name; int age;​ //方法 public void study(){ System.out.println(this.name+"在 阅读全文
posted @ 2021-07-24 22:32 子时未临 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 回顾方法的调用 package com.zishi.oop.demo01;​//值传递public class Demo04 { public static void main(String[] args) { int a = 1; System.out.println(a); //1​ Demo0 阅读全文
posted @ 2021-07-24 00:14 子时未临 阅读(20) 评论(0) 推荐(0) 编辑