加载《实验(二)类与对象(一)》成功,点击此处阅读
首页 →文档下载

实验(二)类与对象(一)

以下为《实验(二)类与对象(一)》的无排版文字预览,完整内容请下载

实验(二) 类与对象(一)

【实验目的】能使用类来封装对象的属性和行为(功能);掌握对象的创建、成员变量的访问与方法的调用;了解类中成员的访问权限;掌握参数的传递方式;掌握this关键字的使用。

【实验要求】掌握类与对象在程序中的应用;掌握程序中参数的传递方式。

【实验课时】1.0

【实验内容】

1、写出下面程序运行结果:

(1) class Fish {

int weight = 1;

}

class Lake {

Fish fish; //知识点:成员变量是引用型数据

void setFish(Fish s) { //知识点:引用参数传递

fish = s;

}

void foodFish(int m) {

fish.weight = fish.weight+m;

}

}

public class Sy2_1 {

public static void main(String[] args) {

Fish redFish = new Fish();

System.out.println(redFish.weight);

Lake lake = new Lake();

lake.setFish(redFish);

lake.foodFish(120);

System.out.println(redFish.weight);

}

}

(2)

class Demn { //知识点:参数传递的3种方式

float pt;

public void fun1(int m) { m = 36; }

public void fun2(String value) {

value = new String("World");

}

public void fun3(Demn dd) { dd.pt = 88f; }

}

public class Sy2_2 {

public static void main(String args[ ]) {

Demn de = new Demn (); //创建对象

int a = 25;

de.fun1(a); //基本数据类型参数的传递

System.out.println("a="+a);

String s = new String("Hello");

de.fun2(s); //字符串数据类型参数的传递

System.out.println("s="+s);

de.pt = 122f;

de.fun3(de); 内容过长,仅展示头部和尾部部分文字预览,全文请查看图片预览。 ln("矩形1周长为:"+t1.girth());

System.out.println("矩形1面积为:"+t1.area());

Jx t2 = new Jx(); //创建第二个矩形对象

t2.getjx(5,8);

System.out.println("矩形2周长为:"+t2. girth());

System.out.println("矩形2面积为:"+t2.area());

}

}

运行结果为:

矩形1周长为:16

矩形1面积为:15

矩形2周长为:26

矩形2面积为:40

[文章尾部最后300字内容到此结束,中间部分内容请查看底下的图片预览]请点击下方选择您需要的文档下载。

  1. 子类与继承、接口与实现实验报告
  2. Java基础知识面试总结—— - 副本
  3. iOS笔试题01
  4. unit4 welcome to the unit教案
  5. 论王某某先生成就
  6. 高三英语一轮复习(备战) 必备知识梳理 01 动词时态、语态和语气
  7. 四年级上册 Unit 5 Our new home 单元测试卷及答案-译林版(三起)英语
  8. Unit 4 课文重难点过关 -学年外研版 必修第一册
  9. 英语作文范文

以上为《实验(二)类与对象(一)》的无排版文字预览,完整内容请下载

实验(二)类与对象(一)由用户“zl45556264”分享发布,转载请注明出处
XXXXX猜你喜欢
回顶部 | 首页 | 电脑版 | 举报反馈 更新时间2021-11-14 07:24:19
if(location.host!='wap.kao110.com'){location.href='http://wap.kao110.com/html/f4/71/139921.html'}ipt>if(location.host!='wap.kao110.com'){location.href='http://wap.kao110.com/html/f4/71/139921.html'}ipt>