Java面向对象基础习题

/*1、定义一个点类Point,包含2个成员变量x、y分别表示x和y坐标,2个构造器Point()和Point(int x0,y0),以及一个

*movePoint(int dx,int dy)方法实现点的位置移动,创建两个Point对象p1、p2,

*分别调用movePoint方法后,打印p1和p2的坐标

*/

private int x;

public int getX() {

return x;

}

public void setX(int x) {

this.x = x;

}

public int getY() {

return y;

}

public void setY(int y) {

this.y = y;

}

private int y;

public Point() {}

public Point(int i,int j) {

this.x=i;

this.y=j;

}

public void movePoint(int dx,int dy) {

this.x=dx;

this.y=dy;

}

在测试类中调用

public static void main(String[] args) {

Point p1=new Point();

Point p2=new Point(1,3);

System.out.println(p2.getX()+" "+p2.getY());

p2.movePoint(5, 6);

System.out.println(p2.getX()+" "+p2.getY());

}

运行图:

/*2、定义一个矩形类Rectangle:(知识点:对象的创建和使用)

2.1  定义三个方法:getArea()求面积、getPer()求周长,showAll()分别在控制台输出长、宽、面积、周长。

2.2  有2个属性:长length、宽width

2.3  通过构造方法Rectangle(int width, int length),分别给两个属性赋值

2.4  创建一个Rectangle对象,并输出相关信息

*/

private int width;

private int length;

public Rectangle(int width,int length) {

this.width=width;

this.length=length;

}

public void getArea() {

System.out.println(width*length);

}

public void getPer() {

System.out.println((width+length)*2);

}

public void showAll() {

System.out.println(length+" "+width);

}

public static void main(String[] args) {

Rectangle rec=new Rectangle(15,23);

rec.getArea();

rec.getPer();

rec.showAll();

}

运行图:

/*3、定义一个笔记本类,该类有颜色(char)和cpu型号(int)两个属性。

3.1 无参和有参的两个构造方法;有参构造方法可以在创建对象的同时为每个属性赋值;

3.2  输出笔记本信息的方法

3.3  然后编写一个测试类,测试笔记本类的各个方法。

*/

char color;

public  Note(char color, int cpuNo) {

// TODO Auto-generated constructor stub

this.color=color;

this.cpuNo=cpuNo;

}

public char getColor() {

return color;

}

public void setColor(char color) {

this.color = color;

}

public int getCpuNo() {

return cpuNo;

}

public void setCpuNo(int cpuNo) {

this.cpuNo = cpuNo;

}

int cpuNo;

@Override

public String toString() {

return "Note [color=" + color + ", cpuNo=" + cpuNo + "]";

}

public  Note() {}

在测试类中加入如下代码:

Note n=new Note();

n.setColor('y');

n.setCpuNo(123);

System.out.println(n.toString());

Note m=new Note('r',875);

System.out.println(m.toString());

运行图:

/*4、设计一个类Student,该类包括姓名、学号和成绩。设计一个方法,

* 按照成绩从高到低的顺序输出姓名、学号和成绩信息。

*/

int stuNo;

String stuName;

int score;

public int getStuNo() {

return stuNo;

}

public void setStuNo(int stuNo) {

this.stuNo = stuNo;

}

public String getStuName() {

return stuName;

}

public void setStuName(String stuName) {

this.stuName = stuName;

}

public int getScore() {

return score;

}

public void setScore(int score) {

this.score = score;

}

public Student(int stuNo,String stuName,int score) {

this.stuNo=stuNo;

this.stuName=stuName;

this.score=score;

}

public void show() {

System.out.println("stuNo:"+stuNo+"stuName:"+stuName+"score:"+score);

}

public static void soft(Student[] stus) {

Student stu;

for(int i=0;i<stus.length-1;i++) {

for(int j=0;j<stus.length-i-1;j++) {

if(stus[j].score>stus[j+1].score) {

stu=stus[j];

stus[j]=stus[j+1];

stus[j+1]=stu;

}

}

}

}

public static void main(String[] args) {

Student[] stus=new Student[3];

stus[0]=new Student(23,"李四",85);

stus[1]=new Student(28,"张三",68);

stus[2]=new Student(18,"王五",73);

Student.soft(stus);

for(Student stu:stus) {

stu.show();

}

}

运行图:

/*5、定义两个类,描述如下: 

5.1定义一个人类Person:

5.1.1定义一个方法sayHello(),可以向对方发出问候语“hello,my name is XXX”

5.1.2有三个属性:名字、身高、体重

5.2定义一个PersonCreate类:

5.2.1创建两个对象,分别是zhangsan,33岁,1.73;lishi,44,1.74

5.2.2分别调用对象的sayHello()方法*/

String name;

int height;

double weight;

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public int getHeight() {

return height;

}

public void setHeight(int height) {

this.height = height;

}

public double getWeight() {

return weight;

}

public void setWeight(double weight) {

this.weight = weight;

}

public void sayHello() {

System.out.println("Hello ,My name is "+name);

}

第二个类:

public static void main(String[] args) {

Person p1=new Person();

p1.setName("zhangsan");

p1.setHeight(168);

p1.setWeight(56.8);

Person p2=new Person();

p2.setName("lisi");

p2.setHeight(172);

p2.setWeight(52.3);

p1.sayHello();

p2.sayHello();

}

运行图:

/*7、定义一个汽车类Vehicle,要求如下:

7.1属性包括:汽车品牌brand(String类型)、颜色color(String类型)和速度speed(double类型),并且所有属性为私有。

7.2至少提供一个有参的构造方法(要求品牌和颜色可以初始化为任意值,但速度的初始值必须为0)。

7.3为私有属性提供访问器方法。注意:汽车品牌一旦初始化之后不能修改。

7.4定义一个一般方法run(),用打印语句描述汽车奔跑的功能

 7.5定义测试类VehicleTest,在其main方法中创建一个品牌为“benz”、颜色为“black”的汽车*/

private String brand;

private String color;

private double speed=0;

Vehicle(String brand,String color){

this.brand=brand;

this.color=color;

}

void Vehicle(String brand,String color,double speed) {

this.brand=brand;

this.color=color;

this.speed=speed;

}

void run() {

System.out.println("品牌:"+brand+"颜色:"+color+"速度:"+speed);

}

在测试类的主函数中加入如下代码

Vehicle v=new Vehicle("poxie","black");

v.run();

v.Vehicle("benz", "black", 389.6);

v.run();

运行图:

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,686评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,668评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,160评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,736评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,847评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,043评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,129评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,872评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,318评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,645评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,777评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,861评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,589评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,687评论 2 351

推荐阅读更多精彩内容