Files
java_lab1/PersonalContact.java
Maksytka a3ebe491e4 1. Replace void with String in class' methods
2. Classes implement interfaces
3. Add interface use demo
2025-09-26 17:34:40 +07:00

13 lines
375 B
Java

public class PersonalContact extends GenericContact implements Callable{
String birthdate;
String commentary;
String address;
String getInfo(){
return this.name + " " + this.number + " " + this.birthdate + " " + this.commentary + " " + this.address;
}
public void call(){
System.out.println("Совершён звонок!");
}
}