摘要:
类与对象的创建 package com.zishi.oop.demo02;public class Student { //属性:字段 String name; int age; //方法 public void study(){ System.out.println(this.name+"在 阅读全文
摘要:
回顾方法的调用 package com.zishi.oop.demo01;//值传递public class Demo04 { public static void main(String[] args) { int a = 1; System.out.println(a); //1 Demo0 阅读全文