1. 程式人生 > >【SayGoodBye.java】一封離職告別信

【SayGoodBye.java】一封離職告別信

try{

//彪悍的人生不需要解釋,彪悍的程式碼不需要註釋!

//我的人生不夠彪悍,所以我選擇死了也要try’;我的程式不夠彪悍,所以我選擇稍稍註釋一下’!

Date contract_Day=new Date("2006-06-30","yyyy-mm-dd");//the day you lost freedom

int contract_Year=4;//the number of the years you will still be restrained

for(int i=0;i<=contract_Year*365;i++){//day afer day

Employee leader=

new Employee("leader");

switch(leader.assignWork()){

case DOCMENT: writing();

case CODE: coding();

case DESIGN: designing();

case TRAIN: training();

case MAINTENANCE: maintenance_doing();

case ERRAND: going_on_errand();

case STUDY: studing();

//etc...

default: personal_studing();// I am not sure about it

}

if((contract_Year*365-i)<30){

Employee hr=new Employee("hr");

if(leader.talking==SUCCESS || hr.talking()==SUCCESS){

contract_Year+=1;

continue;

}else{

if(i==contract_Year*365){

sayThankYou();

sayGoodBye();

break;

}

}

}

}

// go to another for Cyc

}catch(Exception e){

sayThankYou();

// I am not sure about it

sayGoodBye();

// go to another for Cyc

}

publicvoid sayThankYou()throws Exception{

String words="";

words+="先感謝國家,感謝黨;再感謝人民,感謝政府;";

words+="然後感謝公司的各位領導,在這幾年裡對我的容忍、認可、提拔和關照,衷心地表示感謝!";

words+="最後感謝這幾年一直陪伴我,關心幫助我的身邊的同事、朋友們!";

words+="因為有各位我才能走到今天!你們是我在融鑫最大的收穫!謝謝!";

words+="感恩,感謝!我將帶著一份感恩離開融鑫!在此也感謝一下在大學裡教會我感恩的導師!";

System.out.println(words);

}

publicvoid sayGoodBye()throws Exception{

String words="";

words+="一直收到別人的告別,從沒想過我會怎麼寫。";

words+="四年了,在融鑫的社會大學要畢業了,和四年前一樣,我還是執著地不選擇'讀研''讀博'";

words+="在融鑫的四年,有很多回憶,也有很多收穫,在此,最後衷心地祝願融鑫發展地越來越好,";

words+="衷心地祝願各位融鑫大學新生、老生、碩士生、博士生、轉學生以及以前地畢業生、轉學生、輟學生們,";

words+="都能在自己的人生路上,找到適合自己的那條路,都能在自己的路上創造出輝煌和美麗!";

words+="Say GoodBye! Bye! Everyone!";

words+="我相信有緣的話我們一定會在將來的某個時刻某個地方再次邂逅!請保持聯絡!";

words+="Tel: 159********】【MSN******@******.com】【QQ: ********】【Email:*******@*******.com";

words+="PS:有暗戀我的,現在不方便說的,可以通過以上方式表白! 絕對保密!(最後開個玩笑!附上一首《Dreams》和大家Say 88";

System.out.println(words);

}