Why this is not working ?
package com.codegym.task.task05.task0509;
/*
Create a Friend class
*/
public class Friend {
private String name;
private int age;
private char sex;
public Friend(String name, int age, char sex){
this.name = name;
this.age = age;
this.sex = sex;
}
public Friend(String name, int age){
this.name = name;
this.age = age;
}
public Friend(String name){
this.name = name;
}
public static void main(String[] args) {
Friend f1 = new Friend("Heloasa", 12, 'M');
Friend f2 = new Friend("Helos", 11);
Friend f3 = new Friend("Helo");
}
}