实验3 面向对象编程练习 (2).doc
《实验3 面向对象编程练习 (2).doc》由会员分享,可在线阅读,更多相关《实验3 面向对象编程练习 (2).doc(9页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、实验 3 面向对象编程练习 一、实验目的 1. 掌握如何定义类以及类的成员变量、类的方法。2. 掌握对象的创建、对象属性的引用和方法的调用。3. 理解成员的访问权限。4. 掌握如何定义和使用构造方法。5. 掌握this的使用。6. 掌握关键字static、final的使用方法。二、实验要求 1.编写一个含有简单类定义的Java应用程序。2.编写一个含有多个构造方法的类的Java应用程序。三、实验内容 5查看打印输出结果比较形参和成员变量x,yclass Point int x,y; Point(int a,int b) x=a; y=b; Point()void output() System
2、.out.println(x); System.out.println(y);void output(int x,int y) x=x; y=y;public static void main (String args) Point pt; pt=new Point(3,3); pt.output(5,5); pt.output();6this的用法class Point int x,y; Point(int a,int b) x=a; y=b; Point() this(1,1);void output() System.out.println(x); System.out.println(
3、y);void output(int x,int y) this.x=x; this.y=y;public static void main (String args) Point pt; pt=new Point(); pt.output(); 可以简化构造函数的调用7. 打印输出, 体会过程class Point int x,y; Point(int a,int b) x=a; y=b; Point() this(1,1);void output() System.out.println(x); System.out.println(y);void output(int x,int y)
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 实验3 面向对象编程练习 2 实验 面向 对象 编程 练习
限制150内