0918类对象重载,作业4
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了0918类对象重载,作业4相关的知识,希望对你有一定的参考价值。
package com.hanqi.kejian; //创建一个Point类,有成员变量x,y,方法getX(),setX(),还有一个构造方法初始化x和y。创建类主类A来测试它。 public class Point { //成员变量 int x; int y; //构造方法 Point(int x,int y) { this.x=x; this.y=y; } //成员方法 public void getX() { System.out.println(x); } public void setX() { System.out.println(y); } } //主类main方法 package com.hanqi.kejian; public class Pointext0918t { public static void main(String[] args) { Point A=new Point(1,2); A.getX(); A.setX(); } }
运行结果:
以上是关于0918类对象重载,作业4的主要内容,如果未能解决你的问题,请参考以下文章