全文预览

Java程序设计基本

上传者:菩提 |  格式:doc  |  页数:9 |  大小:183KB

文档介绍
ner.java class School{ String name; public class Student{ String name; int age; public Student(String schoolName,String studentName,int newAge){ School.this.name=schoolName; //将 schoolName 赋给 School 类的 name 属性 this.name=studentName; //将 studentName 赋给 student 类的 name 属性 this.age=newAge; //将 newAge 赋给 student 类的 age 属性} public void output(){ System.out.println(" 学校: "+School.this.name); System.out.println(" 姓名: "+this.name); System.out.println(" 年龄: "+this.age); }} public void output(){ Student stu=new Student(" 金融学院"," 张三",24); stu.output(); }} public class Inner { public static void main(String args[]){ System.out.println("-- 通过外部类成员访问内部类成员--"); School a=new School(); a.output(); System.out.println("-- 直接访问内部类成员--"); School.Student b=a.new Student(" 金融学院"," 李四",23); b.output(); }} 4. 实验结果

收藏

分享

举报
下载此文档