java程序设计 面向对象基础 实验

java程序设计 面向对象基础 实验,第1张

二。

1。People.java

public class People {

//性别(sex)及出生日期(date);方法成员有:获取人的性别和出生日期及构造方法。要求构造方法可以设置性别和出生日期的初始值。

private int sex

private Date birth

public People (int sex, Date birth) {

this.sex = sex

this.birth = birth

}

public int getSex() {

return this.sex

}

public Date getBirth() {

return this.birth

}

}

2。Student.java

public class Student extends People{

private int sex

private Date birth

private String name

private int stuno

private double grate

private String studentNative

public Student(int sex, Date birth, String name, int stuno, double grate, String studentNative) {

super(sex, birth)

this.name = name

this.stuno = stuno

this.grate = grate

this.studentNative = studentNative

}

public Date getBirth() {

return birth

}

public double getGrate() {

return grate

}

public String getName() {

return name

}

public int getSex() {

return sex

}

public String getStudentNative() {

return studentNative

}

public int getStuno() {

return stuno

}

}

3。测试类自己编写就好了,创建一个此蚂People和Student的对象,然后设置值,取值就可以了。

五。

1.构造方法没有返回值,方法名和类名一样.

2.继承是指森伍埋子类可以拥有父类的方法和属性;多态是指父类的引用可以指向子类对象的实例

3.重写

4.重载

其他的没什么了,自己完成以下橘档吧。O(∩_∩)O~

这个编程不难啊,为什么自己不试试。

新建一个类档旅:

class Book

{

private:

string m_Bookname

int number

float m_Price

public:

Book()

book(string bookName,int bookNumber,float bookPrice)

virtual ~Book(){}

void Display()

int Borrow()

int Restore()

}

写函数(举例):

Book::Book() //构造

{

string m_Bookname = 。。

int number = 。。岁空

float m_Price 。。

}

void Book::Display()

{

cout<<乎蠢瞎"书名:"<<m_Bookname<<endl

cout<<"数量:"<<number<<endl

。。。

}

主函数:

void main()

{

Book book//类对象

book.Book(历史,2,13.5)

book.Display()

return

}

大概如此,不懂加我112876463


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12255550.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-24
下一篇 2023-05-24

发表评论

登录后才能评论

评论列表(0条)

保存