public class Student { public Student(String name){ do_smth(name); } public Student(){ this("Mike"); } }