-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintroduction to object oriented approach.java
More file actions
92 lines (66 loc) · 1.64 KB
/
Copy pathintroduction to object oriented approach.java
File metadata and controls
92 lines (66 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package week08;
public class Person //extends Object
{
String name, surname, birthPlace;
public Person(String name, String surname, String birthPlace)
{
this.name = name;
this.surname = surname;
this.birthPlace = birthPlace;
}
@Override
public String toString() {
return ", name=" + name + ", surname=" + surname
+ ", birthPlace=" + birthPlace;
}
}
package week08;
public class Student extends Person
{
long stuID;
double gpa;
String department;
public Student(String name, String surname, String birthplace,
long stuID, double gpa, String department)
{
super(name, surname, birthplace);
/*
//this.name = name;
super.name = name;
super.surname = surname;
super.birthPlace = birthplace;*/
this.stuID = stuID;
this.gpa = gpa;
this.department = department;
}
@Override
public String toString() {
return "Student stuID=" + stuID + ", gpa=" + gpa
+ ", department=" + department + super.toString();
}
package week08;
public class Employee extends Person
{
long empID;
String company;
public Employee(long empID, String company, String name, String surname, String birthplace)
{
super(name, surname, birthplace);
this.empID = empID;
this.company = company;
}
@Override
public String toString() {
return "Employee empID=" + empID + ", company=" + company + super.toString();
}
}
package week08;
public class Test1
{
public static void main(String[] args) {
Student s1 = new Student("Ali", "Mehmetoglu", "Istanbul", 234567, 3.21, "AIN");
System.out.println(s1);
Employee e1 = new Employee(1672, "BAU", "Duygu", "CAKIR", "Istanbul");
System.out.println(e1);
}
}