Click here to open my life's code
import lombok.Builder; import lombok.Data; import java.util.Arrays; import java.util.Calendar; /** * @author 💕 * @since 🌑🌒🌓🌔🌖🌗🌘🌚 🌕🌝☀️🌞🌟 */ @Builder @Data public class Life { private String[] languages; private String education; private String[] tech; private Calendar birthday; private String birthplace; public static void main(String[] args) { Calendar birthday = Calendar.getInstance(); birthday.set(2️⃣0️⃣0️⃣1️⃣, Calendar.JULY, 1️⃣7️⃣); Life life = Life.builder() .birthday(birthday) .birthplace("china") .languages( new String[] { "☕", "C++", "☕Script", "HTML5", "Python", "flask", "SQL", "🤖", "react", "vue", "go" }) .education("🏫") .tech( new String[] { "open source", "APIs/SDKs", "clouds", "databases", "🍃 boot", "🍃 cloud" }) .build(); System.out.println("Form " + life.getBirthplace() + "in " + life.getBirthday() + "."); System.out.println("I study in " + life.getEducation() + " Institute of technology."); System.out.println( "And I am familiar with the following languages" + Arrays.toString(life.getLanguages()) + "has the following technologies" + Arrays.toString(life.getTech())); } }